Commit 66b9ac805520fe43694227e08c17a22a59fc9e82
1 parent
e5e6d833
Exists in
master
and in
2 other branches
Adding bulletin to static files dirs to make it work on server
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
amadeus/settings.py
... | ... | @@ -125,6 +125,7 @@ TEMPLATES = [ |
125 | 125 | 'amadeus.context_processors.mural_notifies', |
126 | 126 | 'amadeus.context_processors.chat_notifies', |
127 | 127 | ], |
128 | + 'debug': True | |
128 | 129 | }, |
129 | 130 | }, |
130 | 131 | ] |
... | ... | @@ -204,7 +205,8 @@ STATIC_ROOT = os.path.join(PROJECT_ROOT, 'staticfiles') |
204 | 205 | STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage' |
205 | 206 | |
206 | 207 | STATICFILES_DIRS = [ |
207 | - os.path.join(BASE_DIR, "amadeus/static") | |
208 | + os.path.join(BASE_DIR, "amadeus/static"), | |
209 | + os.path.join(BASE_DIR, "bulletin/static") | |
208 | 210 | ] |
209 | 211 | |
210 | 212 | CRON_CLASSES = [ | ... | ... |
No preview for this file type