-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathenv.example
More file actions
15 lines (13 loc) · 821 Bytes
/
Copy pathenv.example
File metadata and controls
15 lines (13 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FRONTEND_PORT=3000 #production client port
DEV_FRONTEND_PORT=3001 #development client port
TZ=America/New_York #timezone for server (IANA format, e.g., America/Los_Angeles, Europe/London)
# Secret key used to encrypt third-party credentials (OAuth client secret, tokens)
# Must be a 32-byte key. Generate one with:
# openssl rand -base64 32
# Keep this value stable. Changing it will invalidate all previously stored secrets.
ENCRYPTION_KEY=
# Set to true to run a public, self-resetting demo instance: in-memory database
# (wiped on stop), admin PIN disabled, sample data seeded and reset every 6h, and
# abuse-prone routes (uploads, CORS proxy, OAuth, outbound calendar fetches)
# blocked. Leave unset/false for a normal install. See docs/guides/demo-mode.md.
# DEMO_MODE=false