summaryrefslogtreecommitdiffstats
path: root/_deploy
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2025-01-17 00:54:37 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2025-01-17 01:28:34 +0000
commit8ce5db9175bdc3e54db2926687138765000d8413 (patch)
tree3eabd39c9cfa94dceb5419f6acb9240a84bd8a4a /_deploy
parent219cc2870a049c6eb03af21d869ba320530eb38a (diff)
downloadtroggle-8ce5db9175bdc3e54db2926687138765000d8413.tar.gz
troggle-8ce5db9175bdc3e54db2926687138765000d8413.tar.bz2
troggle-8ce5db9175bdc3e54db2926687138765000d8413.zip
re-enable string conversion
Diffstat (limited to '_deploy')
-rw-r--r--_deploy/debian-server/localsettings-expo-live.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/_deploy/debian-server/localsettings-expo-live.py b/_deploy/debian-server/localsettings-expo-live.py
index 9132548..a8ddb3f 100644
--- a/_deploy/debian-server/localsettings-expo-live.py
+++ b/_deploy/debian-server/localsettings-expo-live.py
@@ -166,7 +166,7 @@ LOGFILE = '/var/log/troggle/troggle.log' # hmm. Not used since 2022
IMPORTLOGFILE = '/var/log/troggle/import.log' # hmm. Not used since 2022
# Sanitise these to be strings as Django seems to be particularly sensitive to crashing if they aren't
-#STATIC_URL = str(STATIC_URL) + "/"
-#MEDIA_URL = str(MEDIA_URL) + "/"
+STATIC_URL = str(STATIC_URL) + "/"
+MEDIA_URL = str(MEDIA_URL) + "/"
print(" + finished importing troggle/localsettings.py")