From bdc7e73523efd39bd6ae2f134b64a930a550e9ee Mon Sep 17 00:00:00 2001 From: paul Date: Thu, 3 Jul 2025 16:27:23 +0200 Subject: [PATCH] Add environment variables example file --- .env.example | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..0adec48 --- /dev/null +++ b/.env.example @@ -0,0 +1,24 @@ +# JWT Secret for authentication +JWT_SECRET=your-secret-key-here + +# URLs +ADMIN_URL=https://admin.photos.yourdomain.com +FRONTEND_URL=https://photos.yourdomain.com + +# Database (for PostgreSQL in production) +DB_USER=photoapp +DB_PASSWORD=secure-password-here +DB_NAME=photo_sharing + +# Email Configuration +SMTP_HOST=smtp.gmail.com +SMTP_PORT=587 +SMTP_SECURE=false +SMTP_USER=your-email@gmail.com +SMTP_PASS=your-app-password +EMAIL_FROM=noreply@yourdomain.com + +# Umami Analytics +UMAMI_URL=https://analytics.yourdomain.com +UMAMI_WEBSITE_ID=your-website-id +UMAMI_HASH_SALT=random-salt-here