1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00
This commit is contained in:
kraftnix 2025-07-16 23:28:47 +01:00 committed by GitHub
commit 34c978d008
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -168,6 +168,8 @@ else:
# Fallback to the hostname if parsing fails # Fallback to the hostname if parsing fails
SESSION_COOKIE_DOMAIN = hostname SESSION_COOKIE_DOMAIN = hostname
# Allow user to set their own SESSION_COOKIE_DOMAIN
SESSION_COOKIE_DOMAIN = env('SESSION_COOKIE_DOMAIN', default=SESSION_COOKIE_DOMAIN)
# Static files (CSS, JavaScript, Images) # Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/ # https://docs.djangoproject.com/en/1.7/howto/static-files/
@ -327,4 +329,4 @@ LOGGING = {
# https://github.com/dr5hn/countries-states-cities-database/tags # https://github.com/dr5hn/countries-states-cities-database/tags
COUNTRY_REGION_JSON_VERSION = 'v2.6' COUNTRY_REGION_JSON_VERSION = 'v2.6'
GOOGLE_MAPS_API_KEY = getenv('GOOGLE_MAPS_API_KEY', '') GOOGLE_MAPS_API_KEY = getenv('GOOGLE_MAPS_API_KEY', '')