use defaults if no secrets is provided
This commit is contained in:
parent
0b8eee6da9
commit
0296686ed3
2 changed files with 4 additions and 2 deletions
|
|
@ -7,5 +7,7 @@ if app_stage == 'prod':
|
|||
from .production import *
|
||||
else:
|
||||
from .development import *
|
||||
|
||||
from .secrets import *
|
||||
try:
|
||||
from .secrets import *
|
||||
except:
|
||||
from .secrets_example.py import *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue