21 lines
541 B
Python
21 lines
541 B
Python
# -*- coding: utf-8 -*-
|
|
"""Initial for settings app."""
|
|
import os
|
|
|
|
configuration = os.environ.get('SETTINGS_CONFIGURATION', None)
|
|
|
|
if configuration == 'local':
|
|
# local machine server settings
|
|
from .local import *
|
|
elif configuration == 'development':
|
|
# development server settings
|
|
from .development import *
|
|
elif configuration == 'production':
|
|
# production server settings
|
|
from .production import *
|
|
elif configuration == 'stage':
|
|
# production server settings
|
|
from .stage import *
|
|
else:
|
|
from .base import *
|