From b32bbfb11b40734084e1ea3c6d5a78b8f5dbe462 Mon Sep 17 00:00:00 2001 From: denniskp <122602355+denniskp@users.noreply.github.com> Date: Sun, 9 Nov 2025 14:43:18 +0100 Subject: [PATCH] docs: Create .env.example --- .env.example | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..fab4b67 --- /dev/null +++ b/.env.example @@ -0,0 +1,23 @@ +# === OpenAI Configuration === +OPENAI_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +OPENAI_API_ORGANIZATION_ID=org-xxxxxxxxxxxxxxxxxxxxx +OPENAI_API_PROJECT_ID=proj-xxxxxxxxxxxxxxxxxxxxx + +# === SMTP (Email) Configuration === +# Used for sending emails (e.g., verification, password resets) +SMTP_ACCOUNT_EMAIL=your@email.com +SMTP_ACCOUNT_PASSWORD=your-password + +# === JWT Configuration === +# Used to sign and verify authentication tokens +JWT_SECRET_KEY=your-base64-encoded-jwt-key + +# === Database Configuration === +# Example for PostgreSQL: +DATABASE_URL=jdbc:postgresql://localhost:5432/your_database +DATABASE_USERNAME=your_db_user +DATABASE_PASSWORD=your_db_password + +# === Cloudinary Configuration === +# Used for storing and serving images +CLOUDINARY_URL=cloudinary://1234567890abcdef:abcdef1234567890@your_cloud_name