fix static files config for development enviromnent

This commit is contained in:
Pierre-antoine Comby 2020-03-07 17:47:34 +01:00
parent 448929b900
commit 762585134c
1 changed files with 6 additions and 0 deletions

View File

@ -52,3 +52,9 @@ SESSION_COOKIE_AGE = 60 * 60 * 3
# CAS Client settings
# Can be modified in secrets.py
CAS_SERVER_URL = "http://localhost:8000/cas/"
STATIC_ROOT = '' # not needed in development settings
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static')]