feat: create project
This commit is contained in:
commit
b93eabd429
36 changed files with 1149 additions and 0 deletions
18
iamkonstantin_web/settings/dev.py
Normal file
18
iamkonstantin_web/settings/dev.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
from .base import *
|
||||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = True
|
||||
|
||||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
SECRET_KEY = "django-insecure-twy^nid=-x(@^3*alf9f^ov*l&^ksl6akufybr%$8=x0akp_9w"
|
||||
|
||||
# SECURITY WARNING: define the correct hosts in production!
|
||||
ALLOWED_HOSTS = ["*"]
|
||||
|
||||
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
||||
|
||||
|
||||
try:
|
||||
from .local import *
|
||||
except ImportError:
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue