-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 1.08 KB
/
.env.example
File metadata and controls
32 lines (25 loc) · 1.08 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
29
30
31
32
PORT=3000
SESSION_SECRET=change-me-to-a-long-random-string
# When true: Discord webhook calls are NOT sent (logged instead),
# logger drops to trace level, and every system action is traced to logs/app.log.
APP_DEBUG=false
# Public base URL the app is reachable on (used to render the heartbeat ping URL on the UI).
PUBLIC_BASE_URL=http://localhost:3000
# Database driver: 'sqlite' (default, zero-setup) or 'mysql'
DB_DRIVER=sqlite
# SQLite-only: path to the database file (relative paths resolved from project root)
SQLITE_PATH=data/uptime.sqlite
# MySQL-only (ignored when DB_DRIVER=sqlite)
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USER=pc
DB_PASSWORD=
DB_NAME=uptime
ADMIN_USER=admin
ADMIN_PASS=change-me
# --- White-labeling ---
# Configured from the UI at Settings → Branding & whitelabel (logo, favicon,
# app name, tagline, footer credits — all live without an app restart).
# The legacy APP_NAME / APP_TAGLINE / APP_LOGO_PATH / APP_FAVICON_PATH /
# FOOTER_CREDITS_* env vars are still respected as a fallback for older
# deployments, but new installs should ignore them and use the panel.