-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (19 loc) · 896 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (19 loc) · 896 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
# Public URLs
NEXT_PUBLIC_APP_URL=http://localhost:3000
NEXT_PUBLIC_SITE_URL=http://localhost:3000
# Optional deployment split. Use `marketing` for a public landing-only build.
NEXT_PUBLIC_DEPLOYMENT_MODE=full
# Required
# 32+ chars. Generate with: openssl rand -base64 48
SESSION_SECRET=replace-with-at-least-32-characters
# Absolute path to SQLite database file
SQLITE_DATABASE_PATH=/absolute/path/to/cache.sqlite
# Optional
# Absolute path for attachment files. Defaults to sibling `attachments/` directory next to database file.
ATTACHMENTS_ROOT=/absolute/path/to/cache-attachments
# Required before first owner can be created from /setup.
# 32+ chars. Keep private.
OWNER_SETUP_TOKEN=replace-with-at-least-32-characters
# Required only if you want CLI browser-login exchange support for remote auth.
# Must be at least 32 characters.
ENCRYPTION_KEY=replace-with-at-least-32-characters