Fix static files for dev

This commit is contained in:
Skia 2016-09-14 13:46:17 +02:00
parent 64761a83ed
commit f29e5ecabb
2 changed files with 6 additions and 1 deletions

View File

@ -187,6 +187,7 @@ MEDIA_URL = '/data/'
# https://docs.djangoproject.com/en/1.8/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = './static/'
# Auth configuration

View File

@ -40,5 +40,9 @@ urlpatterns = [
url(r'^ajax_select/', include(ajax_select_urls)),
url(r'^i18n/', include('django.conf.urls.i18n')),
url(r'^jsi18n/$', javascript_catalog, js_info_dict, name='javascript-catalog'),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) # TODO: remove me for production!!!
]
if settings.DEBUG:
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)