23 lines
538 B
Python
23 lines
538 B
Python
|
from pathlib import Path
|
||
|
|
||
|
BASE_DIR = Path(__file__).resolve().parent.parent.parent
|
||
|
|
||
|
# SECURITY WARNING: keep the secret key used in production secret!
|
||
|
SECRET_KEY = "django-insecure-e*p%e)pwf+-ntt4wpn-^^7-0yq)!cjo*om18vy77-=*c0jjfqa"
|
||
|
|
||
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||
|
DEBUG = False
|
||
|
|
||
|
ALLOWED_HOSTS = ["*"]
|
||
|
|
||
|
|
||
|
# Database
|
||
|
# https://docs.djangoproject.com/en/4.2/ref/settings/#databases
|
||
|
|
||
|
DATABASES = {
|
||
|
"default": {
|
||
|
"ENGINE": "django.db.backends.sqlite3",
|
||
|
"NAME": "/data/db.sqlite3",
|
||
|
}
|
||
|
}
|