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/')