-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
27 lines (21 loc) · 838 Bytes
/
env.example
File metadata and controls
27 lines (21 loc) · 838 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
# Admin Panel
# Generate hash: npx bcrypt-cli hash "your-password" 12
ADMIN_PASSWORD_HASH=
AUTH_SECRET=
AUTH_URL=
# Used for generating absolute URLs in metadata/OG.
# In production, set this to your canonical site URL (e.g. https://bandland.com).
NEXT_PUBLIC_SITE_URL=
# Optional: store content JSON outside the repo (recommended for VPS deploys).
# Example: /var/lib/bandland/content
CONTENT_DIR=
# Optional: override where backups (content/.history) are stored.
# Defaults to CONTENT_DIR/.history when not set.
CONTENT_HISTORY_DIR=
# Optional: persist admin login rate limits across app restarts.
# Example: /var/lib/bandland/auth-rate-limit
AUTH_RATE_LIMIT_DIR=
# Optional: app port for Next.js when managed by systemd or a reverse proxy.
APP_PORT=
# Optional: override the deploy-time health check URL.
DEPLOY_HEALTHCHECK_URL=