blob: 7c46ceee4793cc2b35f3056b7b715f85c18f791d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Copy to .env and fill in.
#
# Required. Sign the session cookie with something long and random.
# Generate one with: openssl rand -base64 48
JWT_SECRET=rUEqmzPFEzTx1SS1AC2k8XcXaQwoy6sDmMARjpYFlq6BYA0Dxw1PqcY7S5mVpTWi
# Optional. Where the SQLite file lives. Defaults to ./data/dashboard.db
DATABASE_PATH=./data/dashboard.db
# Optional. Base URL the magic-link emails point back at.
# Used when stubbed emails are logged to the console.
PUBLIC_BASE_URL=http://localhost:5174
|