From 66552dfaeca6360cc36616b4e528f3f67849ff90 Mon Sep 17 00:00:00 2001 From: Hugo LEVY-FALK Date: Fri, 14 Dec 2018 23:05:56 +0100 Subject: [PATCH] static files --- comet/comet/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comet/comet/settings.py b/comet/comet/settings.py index c262efc..39f1e85 100644 --- a/comet/comet/settings.py +++ b/comet/comet/settings.py @@ -119,5 +119,6 @@ USE_TZ = True # https://docs.djangoproject.com/en/2.1/howto/static-files/ STATIC_URL = '/static/' +STATIC_ROOT = os.path.join(BASE_DIR, 'static') LOGIN_URL = '/admin/login'