[project] settings.py react to the DEPLOYMENT variable

This commit is contained in:
bronsen 2025-03-14 12:43:38 +01:00
parent 474df0342c
commit 063b2959a6
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
DATABASE_URL=psql://teilchensammler:teilchensammler@localhost:5432/teilchensammler_test
DEBUG=On
SECRET_KEY=django-insecure-x=%#_wxu0h=d*m#seui9+mjh3vu7of8+4+gpwj@556.un0r1%.
DEV=Off
DEPLOYMENT=Test

View file

@ -16,7 +16,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
env = environ.Env(
DEBUG=(bool, False),
DEV=(bool, False),
DEPLOYMENT=(str, "Dev"),
)
if "pytest/__main__.py" in sys.argv[0]:
env.read_env(BASE_DIR / ".env.test")
@ -43,7 +43,7 @@ INSTALLED_APPS = [
"django.contrib.staticfiles",
"collector.apps.CollectorConfig",
]
if env("DEV") is True:
if env("DEPLOYMENT") == "Dev":
INSTALLED_APPS.extend(
[
"django_extensions",
@ -61,7 +61,7 @@ MIDDLEWARE = [
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
]
if env("DEV") is True:
if env("DEPLOYMENT") == "Dev":
MIDDLEWARE.append("debug_toolbar.middleware.DebugToolbarMiddleware")
INTERNAL_IPS = [
"127.0.0.1",