File diff d0464e870c1a → c795e1799c86
conservancy/settings/prod.py
Show inline comments
...
 
@@ -27,7 +27,7 @@ DATABASES = {
 

	
 
# Apache/mod_wsgi doesn't make it straightforward to pass environment variables
 
# to Django (can't use the Apache config).
 
with open(BASE_DIR / 'secrets.json') as f:
 
with open(BASE_DIR.parent / 'secrets.json') as f:
 
    secrets = json.load(f)
 

	
 
def get_secret(secrets, setting):