2018-06-23 13:31:24 +00:00
|
|
|
import warnings
|
|
|
|
|
2018-06-23 19:08:56 +00:00
|
|
|
from .base import * # noqa
|
2018-06-23 13:31:24 +00:00
|
|
|
|
|
|
|
try:
|
2018-06-23 19:08:56 +00:00
|
|
|
from .local import * # noqa
|
2018-06-23 13:31:24 +00:00
|
|
|
except ImportError:
|
2018-06-23 19:08:56 +00:00
|
|
|
warnings.warn(
|
|
|
|
"No settings.local, using a default SECRET_KEY 'hest'. You should "
|
|
|
|
"write a custom local.py with this setting."
|
|
|
|
)
|
2018-06-23 13:31:24 +00:00
|
|
|
SECRET_KEY = "hest"
|
2018-06-23 19:08:56 +00:00
|
|
|
DEBUG = True
|
|
|
|
pass
|