From 784ce73adb7ce075ba914b2ec7dbcf4e974732b1 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Thu, 26 Feb 2026 01:42:15 +0100 Subject: [PATCH] Add .env.example template for required environment variables --- .env.example | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..bd05b78 --- /dev/null +++ b/.env.example @@ -0,0 +1,10 @@ +DATABASE_URL=postgres://user:password@host:5432/dbname +RAILS_ENV=production +SMTP_SERVER=smtp.example.com +SALSA_OAUTH_KEY=your_oauth_key_here +SALSA_OAUTH_SECRET=your_oauth_secret_here +APP_BASE_URL=https://screenshots.debian.net +COOLIFY_PROD_DEPLOY_TOKEN=your_prod_token_here +COOLIFY_PROD_DEPLOY_WEBHOOK=https://coolify.example.com/api/v1/deploy?uuid=xxx&force=false +COOLIFY_STAGE_DEPLOY_TOKEN=your_stage_token_here +COOLIFY_STAGE_DEPLOY_WEBHOOK=https://coolify.example.com/api/v1/deploy?uuid=xxx&force=false