Skip to content

Commit

Permalink
kevthehermit#72 from kevthehermit/auth
Browse files Browse the repository at this point in the history
  • Loading branch information
AJMartel authored Nov 15, 2017
1 parent 0ec0b56 commit 31b76db
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions volgui/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'web'
]

Expand Down Expand Up @@ -88,7 +89,12 @@
# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases

DATABASES = {}
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'voladmin',
}
}


# Password validation
Expand Down Expand Up @@ -158,9 +164,9 @@
},
'loggers': {
'django': {
'handlers':['file', 'console'],
'handlers': ['file', 'console'],
'propagate': True,
'level':'DEBUG',
'level': 'ERROR',
},
'web': {
'handlers': ['file', 'console'],
Expand Down

0 comments on commit 31b76db

Please sign in to comment.