2018-06-23 15:31:24 +02:00
|
|
|
import warnings
|
|
|
|
|
2018-06-23 21:08:56 +02:00
|
|
|
from .base import * # noqa
|
2018-06-23 15:31:24 +02:00
|
|
|
|
|
|
|
try:
|
2018-06-23 21:08:56 +02:00
|
|
|
from .local import * # noqa
|
2018-06-23 15:31:24 +02:00
|
|
|
except ImportError:
|
2018-06-23 21:08:56 +02: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 15:31:24 +02:00
|
|
|
SECRET_KEY = "hest"
|
2018-06-23 21:08:56 +02:00
|
|
|
DEBUG = True
|
|
|
|
pass
|