diff options
Diffstat (limited to 'conf/settings/prod.py')
-rw-r--r-- | conf/settings/prod.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/conf/settings/prod.py b/conf/settings/prod.py index cb1842a..5b31337 100644 --- a/conf/settings/prod.py +++ b/conf/settings/prod.py @@ -31,7 +31,4 @@ DATABASES = { } } -if os.getenv("STATIC_ROOT"): - STATIC_ROOT = os.getenv("STATIC_ROOT") -else: - STATIC_ROOT = "/data/static" +STATIC_ROOT = "/app/static" |