18 lines
548 B
Bash
18 lines
548 B
Bash
|
|
# Copy to .env and adjust. All values are optional — sane defaults apply.
|
||
|
|
|
||
|
|
# Default ntfy server used by feeds that don't specify their own.
|
||
|
|
DEFAULT_NTFY_SERVER=https://ntfy.sh
|
||
|
|
|
||
|
|
# How often (minutes) feeds are polled. Editable later in the UI.
|
||
|
|
DEFAULT_CHECK_INTERVAL=5
|
||
|
|
|
||
|
|
# Bootstrap admin account — used ONLY when the database is first created.
|
||
|
|
ADMIN_USERNAME=admin
|
||
|
|
ADMIN_PASSWORD=admin
|
||
|
|
|
||
|
|
# Cookie signing secret. Leave empty to auto-generate & persist in DATA_DIR.
|
||
|
|
# SECRET_KEY=
|
||
|
|
|
||
|
|
# Where the SQLite DB and secret key are stored.
|
||
|
|
DATA_DIR=./data
|