refactor: Update .env.example to improve variable definitions and paths

This commit is contained in:
William Valentin
2025-08-06 14:38:46 -07:00
parent d9f08344af
commit 55682a1d53

View File

@@ -5,22 +5,21 @@
# The IMAGE variable should point to the correct Docker image repository.
# The SRC_PATH should be the path to your source code.
# DISPLAY_IP should be the IP address where the application will be accessible.
# ROOT is the home directory for the application.
# ICON should be the filename of the icon used in the application.
# LOG_LEVEL can be set to DEBUG, INFO, WARNING, ERROR, or CRITICAL.
# LOG_PATH is where the application logs will be stored.
# LOG_CLEAR can be set to True or False to control log clearing behavior.
# BACKUP_PATH is where backups will be stored.
# Make sure to keep this file secure and not expose sensitive information.
# If you need to add more environment variables, do so below this line.
# Additional environment variables can be added as needed.
TARGET="thechart"
VERSION="1.0.0"
IMAGE="gitea-http.taildb3494.ts.net/will/${TARGET}:${VERSION}"
IMAGE="gitea-http.taildb3494.ts.net/will/${TARGET}:v${VERSION}"
SRC_PATH="./src"
DISPLAY_IP="192.168.153.117"
ROOT="/home/will"
ICON="chart-671.png"
LOG_LEVEL="DEBUG"
LOG_PATH="./logs"
LOG_PATH="${HOME}/${TARGET}-logs"
LOG_CLEAR="True"
BACKUP_PATH="./thechart-backups"
BACKUP_PATH="${HOME}/${TARGET}-backups"