From 181d8550338346f678922eca8ec770cec4a122b5 Mon Sep 17 00:00:00 2001 From: Sebastian Lohff Date: Wed, 16 Oct 2019 00:19:37 +0200 Subject: [PATCH] Move static files dir --- dnmapper/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dnmapper/settings.py b/dnmapper/settings.py index 1f3637b..893b457 100644 --- a/dnmapper/settings.py +++ b/dnmapper/settings.py @@ -29,7 +29,7 @@ DEBUG = True ALLOWED_HOSTS = [] STATICFILES_DIRS = ( - 'static/', + os.path.join(BASE_DIR, 'static/'), ) # Application definition @@ -106,4 +106,4 @@ USE_TZ = True # https://docs.djangoproject.com/en/1.7/howto/static-files/ STATIC_URL = '/static/' -STATIC_ROOT = os.path.join(BASE_DIR, 'static/') +STATIC_ROOT = os.path.join(BASE_DIR, 'cstatic/')