From 8ad6cb962551a21b0af82d13dc38a81c77148229 Mon Sep 17 00:00:00 2001 From: sujiba Date: Mon, 18 Mar 2024 17:09:03 +0000 Subject: [PATCH] feat: added tandoor env file --- tandoor/example.env | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tandoor/example.env diff --git a/tandoor/example.env b/tandoor/example.env new file mode 100644 index 0000000..c026c2d --- /dev/null +++ b/tandoor/example.env @@ -0,0 +1,20 @@ +# --------------------------------------------------------------------------- +# This template contains only required options. +# Visit the docs to find more https://docs.tandoor.dev/system/configuration/ +# --------------------------------------------------------------------------- + +# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one +SECRET_KEY=Lo0ldKrSjBGCHk8oxVS1rwziKZo9jiSIcaMVJQsXOugmUoGFBe + +# SQLite +DB_ENGINE=django.db.backends.sqlite3 + +# PostgreSQL +# DB_ENGINE=django.db.backends.postgresql +# POSTGRES_HOST=db_recipes +# POSTGRES_DB=djangodb +# POSTGRES_PORT=5432 +# POSTGRES_USER=djangouser +# POSTGRES_PASSWORD= + +DEBUG=0