35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
# CoFi Registration — Environment Variables
|
|
# Copy to .env and fill in values
|
|
|
|
# ── Mollie Payment Gateway ──
|
|
MOLLIE_API_KEY=test_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
# ── Public URL (used for Mollie redirects and webhooks) ──
|
|
NEXT_PUBLIC_BASE_URL=https://register.collaborative-finance.net
|
|
|
|
# ── Google Sheets (registration data) ──
|
|
# JSON string of the service account key
|
|
GOOGLE_SERVICE_ACCOUNT_KEY={}
|
|
GOOGLE_SHEET_ID=your-spreadsheet-id
|
|
GOOGLE_SHEET_NAME=Registrations
|
|
|
|
# ── Google Sheets (booking/accommodation assignment) ──
|
|
BOOKING_SHEET_ID=your-booking-spreadsheet-id
|
|
BOOKING_SHEET_NAME=Sheet1
|
|
|
|
# ── SMTP (Mailcow) ──
|
|
SMTP_HOST=mail.rmail.online
|
|
SMTP_PORT=587
|
|
SMTP_USER=newsletter@collaborative-finance.net
|
|
SMTP_PASS=
|
|
EMAIL_FROM=CoFi <newsletter@collaborative-finance.net>
|
|
INTERNAL_NOTIFY_EMAIL=team@collaborative-finance.net
|
|
|
|
# ── Listmonk (direct PostgreSQL) ──
|
|
LISTMONK_DB_HOST=listmonk-db
|
|
LISTMONK_DB_PORT=5432
|
|
LISTMONK_DB_NAME=listmonk
|
|
LISTMONK_DB_USER=listmonk
|
|
LISTMONK_DB_PASS=
|
|
LISTMONK_LIST_ID=1
|