From 23c35162ac21c6ed1c141784e1af48057b8fead4 Mon Sep 17 00:00:00 2001 From: PCoder Date: Sat, 2 Feb 2019 21:41:50 +0100 Subject: [PATCH] Add STATIC_ROOT path --- ungleich_no_ipv4_here/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ungleich_no_ipv4_here/settings.py b/ungleich_no_ipv4_here/settings.py index 93cc7bd..61389d0 100644 --- a/ungleich_no_ipv4_here/settings.py +++ b/ungleich_no_ipv4_here/settings.py @@ -128,3 +128,5 @@ STATICFILES_DIRS = ( os.path.join(BASE_DIR, 'static'), ) +STATIC_ROOT = env('STATIC_ROOT', os.path.join(BASE_DIR, '/staticfiles/')) +