-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
37 lines (33 loc) 路 1.08 KB
/
Copy path.env.example
File metadata and controls
37 lines (33 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
33
34
35
36
37
# Core / security
APP_NAME=JobTrack
APP_HOST=0.0.0.0
APP_PORT=8080
DATABASE_PATH=/data/jobs.db
DATABASE_RESTORE_MAX_BYTES=268435456
# IMPORTANT: change both before exposing the admin panel.
ADMIN_USERNAME=admin
ADMIN_PASSWORD=replace-with-a-long-unique-password
APP_SECRET_KEY=replace-with-at-least-32-random-characters
# Account activation. These credentials are used only for system messages;
# users configure job notification email separately in their own workspace.
PUBLIC_BASE_URL=https://your-bert-domain.example
REGISTRATION_LIFETIME_HOURS=24
SYSTEM_SMTP_HOST=
SYSTEM_SMTP_PORT=587
SYSTEM_SMTP_USERNAME=
SYSTEM_SMTP_PASSWORD=
SYSTEM_SMTP_USE_TLS=true
SYSTEM_EMAIL_FROM=
# Optional web update management. Leave blank unless the host updater from
# deploy/README.md is installed.
UPDATE_AGENT_SOCKET=
UPDATE_AGENT_TOKEN=
UPDATE_AGENT_TIMEOUT_SECONDS=5
# Scheduler bootstrap defaults. After first start, search/schedule settings are managed in the web UI.
TIMEZONE=Europe/Berlin
SCHEDULE_FREQUENCY=weekly
SCHEDULE_DAY=mon
SCHEDULE_HOUR=8
SCHEDULE_MINUTE=0
SCHEDULE_INTERVAL_HOURS=12
RUN_ON_START=false