mirror of https://github.com/Lissy93/dashy.git
34 lines
979 B
Bash
34 lines
979 B
Bash
# 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
|
|
|
|
# Usually the same as BASE_URL, but accessible in frontend
|
|
# VUE_APP_DOMAIN=https://dashy.to
|
|
|
|
# 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
|
|
# VUE_APP_VERSION=2.0.0
|