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

use defaults if no secrets is provided

parent 0b8eee6d
No related branches found
No related tags found
No related merge requests found
...@@ -7,5 +7,7 @@ if app_stage == 'prod': ...@@ -7,5 +7,7 @@ if app_stage == 'prod':
from .production import * from .production import *
else: else:
from .development import * from .development import *
try:
from .secrets import * from .secrets import *
except:
from .secrets_example.py import *
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