Files

33 lines
1.0 KiB
Bash
Raw Permalink Normal View History

# This file is sourced by shell scripts. Keep values shell-compatible.
2026-04-19 13:33:43 +02:00
# Local TLS domain used by nginx and your own certificate files.
HOST_DOMAIN=moving-helper.lan
# Certificate directory prepared by the user.
# Place fullchain.pem and privkey.key in this directory.
# If you use acme.sh, this is typically /etc/acme.sh/$HOST_DOMAIN
SSL_PATH=/etc/acme.sh/$HOST_DOMAIN
# Deployment target directory used by the install script.
APP_DIR=$HOME/.local/share/moving-helper
# Backup destination directory used by the deployed backup script.
BACKUP_DIR=$HOME/.local/backup/moving-helper
# Optional rclone remote target, for example: remote:folder/moving-helper
BACKUP_REMOTE=
# Host port published by docker compose. The container always listens on 10000.
APP_PORT=10000
# Database location inside the container.
2026-04-19 13:33:43 +02:00
DATABASE_URL=sqlite:////app/data/app.db
# Host-side persistent data directory.
# Relative paths are resolved from APP_DIR after installation.
2026-04-19 13:33:43 +02:00
DATA_DIR=./data
# Optional compose project name.
COMPOSE_PROJECT_NAME=moving-helper
2026-04-19 13:33:43 +02:00