really fix STATICFILES_DIRS
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jeffrey C. Ollie 2023-05-23 22:54:51 -05:00
parent aee8db67d6
commit 7a82b6c879
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -51,7 +51,7 @@
localSettings = pkgs.writeText "local_settings.py" ''
import os
STATIC_ROOT = os.getenv("STATIC_ROOT")
STATICFILES_DIRS = [ STATIC_ROOT ]
STATICFILES_DIRS = [ ]
SECRET_KEY_FILE = os.getenv("SECRET_KEY_FILE")
if SECRET_KEY_FILE:
with open(SECRET_KEY_FILE, "r") as file: