-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (23 loc) · 951 Bytes
/
Copy pathenv.example
File metadata and controls
28 lines (23 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
SUPABASE_URL=
SUPABASE_SERVICE_ROLE_KEY=
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
# Session signing key (HMAC). Optional: if unset, falls back to
# SUPABASE_SERVICE_ROLE_KEY. Set a dedicated long random value in production.
SESSION_SECRET=
# Initial admin/staff passwords used ONLY when first bootstrapping an empty
# database (the very first /api/seed call). Set strong values in production.
SEED_ADMIN_PASSWORD=
SEED_STAFF_PASSWORD=
# Required to enable the emergency /api/auth/reset-admin endpoint. If unset,
# that endpoint is disabled (returns 404). Send it as the x-admin-reset-secret header.
ADMIN_RESET_SECRET=
# Backups. BACKUP_SECRET must match the value set as a GitHub Actions repo secret.
BACKUP_SECRET=
# Optional S3 target for backups. If left blank, backups are returned inline
# and archived as a private GitHub Actions artifact instead.
S3_ENDPOINT=
S3_ACCESS_KEY_ID=
S3_SECRET_ACCESS_KEY=
S3_BUCKET=
S3_REGION=