forked from data.coop/membersystem
15 lines
308 B
Python
15 lines
308 B
Python
import warnings
|
|
|
|
from .base import * # noqa
|
|
|
|
try:
|
|
from .local import * # noqa
|
|
except ImportError:
|
|
warnings.warn(
|
|
"No settings.local, using a default SECRET_KEY 'hest'. You should "
|
|
"write a custom local.py with this setting."
|
|
)
|
|
SECRET_KEY = "hest"
|
|
DEBUG = True
|
|
pass
|