Skip to content
Snippets Groups Projects
Commit 62c7e886 authored by Pierre-antoine Comby's avatar Pierre-antoine Comby
Browse files

typo, making the CI breaks

parent 59f5f7d1
No related branches found
No related tags found
No related merge requests found
Pipeline #7685 failed with stage
in 2 minutes and 40 seconds
......@@ -7,7 +7,10 @@ if app_stage == 'prod':
from .production import *
else:
from .development import *
# Load password for database and SECRET_KEY
try:
from .secrets import *
except:
except ImportError:
from .secrets_example.py import *
print("Use default secrets!")
......@@ -159,7 +159,3 @@ STATIC_URL = '/static/'
ALIAS_VALIDATOR_REGEX = r''
try:
from .settings_local import *
except ImportError:
pass
DATABASE['default']['PASSWORD'] ='CHANGE_ME'
DATABASES['default']['PASSWORD'] ='CHANGE_ME'
SECRET_KEY = 'CHANGE_ME'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment