From a24d6ad9569119c77a86ba7c84201de547a3c476 Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 10 Mar 2026 13:06:04 +0100 Subject: [PATCH] Add example environment configuration file --- .env.example | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..db49c14 --- /dev/null +++ b/.env.example @@ -0,0 +1,32 @@ +# Django +SECRET_KEY=django-insecure-change-me +DEBUG=True +ALLOWED_HOSTS=localhost,127.0.0.1 + +# Redis +REDIS_URL=redis://127.0.0.1:6379/1 + +# Stripe +STRIPE_PUBLISHABLE_KEY= +STRIPE_SECRET_KEY= + +# PayPal +PAYPAL_CLIENT_ID= +PAYPAL_CLIENT_SECRET= +PAYPAL_MODE=sandbox + +# SMTP +SMTP_ENDPOINT=smtp.email.eu-paris-1.oci.oraclecloud.com +SMTP_PORT=587 +SECURITY=tls +SMTP_USERNAME= +SMTP_PASSWORD= +SMTP_EMAIL= + +DOMAIN= +PROTOCOL= + +# Logging +LOG_LEVEL=INFO +LOG_DIR=logs +LOG_FILE=app.log \ No newline at end of file