20 lines
360 B
Python
20 lines
360 B
Python
|
from .base import *
|
||
|
|
||
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||
|
DEBUG = True
|
||
|
|
||
|
ALLOWED_HOSTS = ["*"]
|
||
|
|
||
|
CORS_ALLOW_ALL_ORIGINS = True
|
||
|
|
||
|
|
||
|
# Database
|
||
|
# https://docs.djangoproject.com/en/4.2/ref/settings/#databases
|
||
|
|
||
|
DATABASES = {
|
||
|
"default": {
|
||
|
"ENGINE": "django.db.backends.sqlite3",
|
||
|
"NAME": BASE_DIR / "db.sqlite3",
|
||
|
}
|
||
|
}
|