-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.env.example
More file actions
22 lines (16 loc) · 739 Bytes
/
Copy path.env.example
File metadata and controls
22 lines (16 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# LinkBreeze Configuration
# Server port (default: 3000)
PORT=3000
# SQLite database file path
DATABASE_PATH=./data/linkbreeze.db
# Secret key for session signing (REQUIRED in production — set to a random string)
# Generate one with: openssl rand -hex 32
SECRET_KEY=
# Analytics salt (auto-generated on first run if empty)
ANALYTICS_SALT=
# Public base URL (optional but recommended — prevents host-header injection)
# Set to your real domain, e.g. https://linkbreeze.example.com
# BASE_URL=https://linkbreeze.example.com
# Dev only: allow Server Actions from external IPs (Tailscale, LAN, etc.)
# Comma-separated list. Only needed for `npm run dev`, not production.
# DEV_ORIGINS="http://100.x.x.x:3000,http://192.168.x.x:3000"