mirror of https://gitlab.crans.org/bde/nk20
12 lines
201 B
Python
12 lines
201 B
Python
|
import os
|
||
|
|
||
|
from .base import *
|
||
|
|
||
|
app_stage = os.environ.get('DJANGO_APP_STAGE', 'dev')
|
||
|
if app_stage == 'prod':
|
||
|
from .production import *
|
||
|
else:
|
||
|
from .development import *
|
||
|
|
||
|
from .secrets import *
|