-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 1.29 KB
/
.env.example
File metadata and controls
28 lines (22 loc) · 1.29 KB
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
# ─── Application ─────────────────────────────────────────────
# Secret used to sign JWT session tokens (run: openssl rand -hex 32)
AUTH_SECRET=change_this_to_a_random_64_char_hex_string
# Admin credentials
ADMIN_USERNAME=admin
ADMIN_PASSWORD=changeme
# Set to "true" only if you serve the app over HTTPS.
# Leave as "false" for plain HTTP (default for local/LAN installs).
COOKIE_SECURE=false
# ─── Database ─────────────────────────────────────────────────
DATABASE_URL="file:./data/goose.db"
# ─── Paths (optional overrides) ───────────────────────────────
# Absolute path to the directory where core binaries are stored
# Defaults to: <project_root>/data/cores
# CORES_DIR=/data/cores
# Absolute path where auto-generated core config JSON files are written
# Defaults to: <project_root>/data/configs
# CONFIGS_DIR=/data/configs
# ─── Runtime ──────────────────────────────────────────────────
NODE_ENV=production
PORT=3000
HOSTNAME=0.0.0.0