mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-23 21:05:17 +00:00
commit
7c1eb5c854
3 changed files with 24 additions and 11 deletions
|
@ -1,15 +1,15 @@
|
||||||
Django==2.2.20
|
Django==2.2.22
|
||||||
django-bootstrap4==3.0.0
|
django-bootstrap4==3.0.1
|
||||||
django-icons==3.0.0
|
django-icons==4.0.0
|
||||||
django-login-required-middleware==0.5.0
|
django-login-required-middleware==0.6.1
|
||||||
django-otp==1.0.2
|
django-otp==1.0.6
|
||||||
django-qr-code==1.3.1
|
django-qr-code==2.2.0
|
||||||
gunicorn==20.1.0
|
gunicorn==20.1.0
|
||||||
libsass==0.20.1
|
libsass==0.21.0
|
||||||
libvirt-python==7.2.0
|
libvirt-python==7.4.0
|
||||||
lxml==4.6.3
|
lxml==4.6.3
|
||||||
qrcode==6.1
|
qrcode==6.1
|
||||||
rwlock==0.0.7
|
rwlock==0.0.7
|
||||||
websockify==0.9.0
|
websockify==0.9.0
|
||||||
zipp==3.4.0
|
zipp==3.4.1
|
||||||
ldap3==2.9.0
|
ldap3==2.9.0
|
||||||
|
|
|
@ -3,5 +3,5 @@ coverage==5.5
|
||||||
django-debug-toolbar==3.2.1
|
django-debug-toolbar==3.2.1
|
||||||
pycodestyle==2.7.0
|
pycodestyle==2.7.0
|
||||||
pyflakes==2.3.1
|
pyflakes==2.3.1
|
||||||
pylint==2.7.4
|
pylint==2.8.3
|
||||||
yapf==0.31.0
|
yapf==0.31.0
|
||||||
|
|
|
@ -83,6 +83,19 @@ TEMPLATES = [
|
||||||
|
|
||||||
WSGI_APPLICATION = "webvirtcloud.wsgi.application"
|
WSGI_APPLICATION = "webvirtcloud.wsgi.application"
|
||||||
|
|
||||||
|
# Settings for django-icons
|
||||||
|
DJANGO_ICONS = {
|
||||||
|
|
||||||
|
'DEFAULTS': {
|
||||||
|
'renderer': 'fontawesome4',
|
||||||
|
},
|
||||||
|
|
||||||
|
'RENDERERS': {
|
||||||
|
'fontawesome4': 'FontAwesome4Renderer',
|
||||||
|
'bootstrap3': 'Bootstrap3Renderer',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
|
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
|
||||||
|
|
||||||
|
@ -212,7 +225,7 @@ SHOW_PROFILE_EDIT_PASSWORD = True
|
||||||
|
|
||||||
OTP_ENABLED = False
|
OTP_ENABLED = False
|
||||||
|
|
||||||
LOGIN_REQUIRED_IGNORE_VIEW_NAMES = ["accounts:email_otp"]
|
LOGIN_REQUIRED_IGNORE_VIEW_NAMES = ["accounts:login", "accounts:email_otp"]
|
||||||
|
|
||||||
LDAP_ENABLED = False
|
LDAP_ENABLED = False
|
||||||
LDAP_URL = ''
|
LDAP_URL = ''
|
||||||
|
|
Loading…
Reference in a new issue