Update .env.example with complete environment variable definitions and descriptions for clarity
This commit is contained in:
44
.env.example
44
.env.example
@@ -1,19 +1,25 @@
|
|||||||
# The version of the application
|
# This is an example .env file. Copy this to .env and modify as needed.
|
||||||
# This should match the version in your Dockerfile
|
# Ensure to set the correct values for your environment.
|
||||||
# Example: VERSION=1.0.1
|
# The TARGET variable should reflect the name of your application or service.
|
||||||
VERSION=1.0.1
|
# The VERSION variable should match the version of your application.
|
||||||
# The Docker image name
|
# The IMAGE variable should point to the correct Docker image repository.
|
||||||
# This should include the registry, repository, and tag
|
# The SRC_PATH should be the path to your source code.
|
||||||
# Example: IMAGE=gitea-http.taildb3494.ts.net/will/thechart:${VERSION}
|
# DISPLAY_IP should be the IP address where the application will be accessible.
|
||||||
IMAGE=gitea-http.taildb3494.ts.net/will/thechart:${VERSION}
|
# ROOT is the home directory for the application.
|
||||||
# Src Path
|
# ICON should be the filename of the icon used in the application.
|
||||||
# The path to the source code directory
|
# LOG_LEVEL can be set to DEBUG, INFO, WARNING, ERROR, or CRITICAL.
|
||||||
# This should be relative to the location of this .env file
|
# LOG_PATH is where the application logs will be stored.
|
||||||
# Example: SRC_PATH=./src
|
# LOG_CLEAR can be set to True or False to control log clearing behavior.
|
||||||
SRC_PATH=./src
|
# Make sure to keep this file secure and not expose sensitive information.
|
||||||
# The IP address of your X server, e.g., 192.168.1.100
|
# If you need to add more environment variables, do so below this line.
|
||||||
DISPLAY_IP=
|
# Additional environment variables can be added as needed.
|
||||||
# Set the logging level for the application
|
TARGET="thechart"
|
||||||
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
|
VERSION="1.0.0"
|
||||||
LOG_LEVEL=INFO
|
IMAGE="gitea-http.taildb3494.ts.net/will/${TARGET}:${VERSION}"
|
||||||
LOG_FILE=/tmp/thechart.log
|
SRC_PATH="./src"
|
||||||
|
DISPLAY_IP="192.168.153.117"
|
||||||
|
ROOT="/home/will"
|
||||||
|
ICON="chart-671.png"
|
||||||
|
LOG_LEVEL="DEBUG"
|
||||||
|
LOG_PATH="./logs"
|
||||||
|
LOG_CLEAR="True"
|
||||||
|
|||||||
Reference in New Issue
Block a user