mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
adding new django version to update procedure, fixing missing deps
This commit is contained in:
parent
904df30386
commit
32b03b7184
2 changed files with 12 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
Django==1.11.14
|
||||
websockify==0.8.0
|
||||
gunicorn==19.3.0
|
||||
libvirt-python==3.10
|
||||
gunicorn==19.9.0
|
||||
libvirt-python==4.4.0
|
||||
libxml2-python3==2.9.5
|
||||
lxml==4.2.3
|
||||
|
|
|
@ -83,7 +83,15 @@ TEMPLATES = [
|
|||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||||
'DIRS': [ os.path.join(BASE_DIR, 'templates'), ],
|
||||
'APP_DIRS': True,
|
||||
}
|
||||
'OPTIONS': {
|
||||
'context_processors': [
|
||||
'django.template.context_processors.debug',
|
||||
'django.template.context_processors.request',
|
||||
'django.contrib.auth.context_processors.auth',
|
||||
'django.contrib.messages.context_processors.messages',
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
## WebVirtCloud settings
|
||||
|
|
Loading…
Reference in a new issue