jaywink /
kakaravaara3
| 1 | from kakaravaara.settings.base import * |
||
|
0 ignored issues
–
show
Unused Code
introduced
by
Loading history...
|
|||
| 2 | |||
| 3 | # Quick-start development settings - unsuitable for production |
||
| 4 | # See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/ |
||
| 5 | |||
| 6 | # SECURITY WARNING: keep the secret key used in production secret! |
||
| 7 | # SECRET_KEY = '' |
||
| 8 | |||
| 9 | # SECURITY WARNING: don't run with debug turned on in production! |
||
| 10 | DEBUG = False |
||
| 11 | |||
| 12 | ALLOWED_HOSTS = ["kakaravaara.fi"] |
||
| 13 | |||
| 14 | try: |
||
| 15 | from kakaravaara.settings.local import * |
||
|
0 ignored issues
–
show
|
|||
| 16 | except ImportError: |
||
| 17 | pass |
||
| 18 |