From dbd2aa847625d41da58a70838441351d67cb9622 Mon Sep 17 00:00:00 2001 From: Saqibur Rahman Date: Sat, 25 Nov 2023 23:41:34 +0600 Subject: [PATCH] Add sections to .env.example --- .env.example | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 60cf66f..ebf3670 100644 --- a/.env.example +++ b/.env.example @@ -1,13 +1,15 @@ +# Django secrets SECRET_KEY=super-insecure-django-key DEBUG=True ALLOWED_HOSTS=* ENV_NAME=DEV +# Datbase secrets DB_HOST=localhost DB_PORT=5432 DB_NAME=example_db DB_USERNAME=postgres DB_PASSWORD=12345678 -# Super user +# Super user information SUPERUSER_EMAIL=superuser@example.com