# Store environmental variables here. All variables are optional.
# Lines beginning in '#' are ignored.

# Can be either development, production or test
# NODE_ENV=production

# The port to expose the running application on
# PORT=4000

# If you've proved SSL certs, then can set HTTPS port
# SSL_PORT=4001

# The host that Dashy is running on, domain or IP
# HOST=localhost

# The default base path for serving up static assets
# BASE_URL=./

# Optionally, specify the path of SSL private + public keys
# SSL_PRIV_KEY_PATH=/etc/ssl/certs/dashy-priv.key
# SSL_PUB_KEY_PATH=/etc/ssl/certs/dashy-pub.pem

# If SSL enabled, choose whether or not to redirect http to https
# Defaults to true
# REDIRECT_HTTPS=true

# The path to the user data directory
# USER_DATA_DIR=user-data

# Enable HTTP auth on all server-side endpoints, using the users defined in conf.yml
# This is the recommended approach when using Dashy's built-in auth (via appConfig.auth.users)
# ENABLE_HTTP_AUTH=true

# Alternatively, protect server-side endpoints with a single static username/password
# BASIC_AUTH_USERNAME=
# BASIC_AUTH_PASSWORD=

# If using BASIC_AUTH above, set these to the same values to skip the browser auth prompt
# Requires a rebuild to take effect - only use on trusted networks
# VITE_APP_BASIC_AUTH_USERNAME=
# VITE_APP_BASIC_AUTH_PASSWORD=

# Override where the path to the configuration file is, can be a remote URL
# VITE_APP_CONFIG_PATH=/conf.yml

# Usually the same as BASE_URL, but accessible in frontend
# VITE_APP_DOMAIN=https://dashy.to

# Override the page title for the frontend app
# VITE_APP_TITLE=''

# Set the Vue app routing mode (can be 'hash', 'history' or 'abstract')
# VITE_APP_ROUTING_MODE=history

# Should enable SRI for build script and link resources
# INTEGRITY=true

# Computed automatically on build. Indicates if running in container
# IS_DOCKER=true

# Again, set automatically using package.json during build time
# VITE_APP_VERSION=2.0.0

# Directory for conf.yml backups
# BACKUP_DIR=./user-data/config-backups

# Set to 'true' to disable automatic backups before each config save
# DISABLE_CONFIG_BACKUPS=true

# Setup any other user defined vars by prepending VITE_APP_ to the var name
# VITE_APP_pihole_ip=http://your.pihole.ip
# VITE_APP_pihole_key=your_pihole_secret_key
