37 lines
959 B
Python
37 lines
959 B
Python
"""
|
|
Django settings for de tilde project.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/2.0/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/2.0/ref/settings/
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
from configtype.jsonconfig import setup_search_paths
|
|
|
|
_project_app_path = Path(__file__).parent.parent
|
|
BASE_PATH = _project_app_path.parent
|
|
BASE_DIR = str(BASE_PATH)
|
|
|
|
setup_search_paths("/etc/ocyan/", str(_project_app_path))
|
|
|
|
from ocyan.main.settings import * # pylint:disable=W0401,W0614
|
|
|
|
INSTALLED_APPS = ["phase2a_test_20260222013532"] + INSTALLED_APPS
|
|
|
|
STATIC_ROOT = str(BASE_PATH / "static")
|
|
MEDIA_ROOT = str(BASE_PATH / "media")
|
|
PRIVATE_MEDIA_ROOT = str(BASE_PATH / "private")
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": str(BASE_PATH / "db.sqlite3"),
|
|
}
|
|
}
|
|
|
|
SECRET_KEY = "3$md^o$3fm5!4pfbo0+#p$4ilvb1%13nyrg&*0gr&cc9h9(l!^"
|