-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #1528 from Lissy93/FEAT/Dashy-V3
[FEAT] Remove the need for rebuild after config changes
- Loading branch information
Showing
97 changed files
with
3,270 additions
and
1,796 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,59 @@ | ||
# 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 | ||
|
||
# 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 | ||
|
||
# Directory for conf.yml backups | ||
# BACKUP_DIR=./public/ | ||
# 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 | ||
|
||
# Override where the path to the configuration file is, can be a remote URL | ||
# VUE_APP_CONFIG_PATH=/conf.yml | ||
|
||
# Usually the same as BASE_URL, but accessible in frontend | ||
# VUE_APP_DOMAIN=https://dashy.to | ||
|
||
# Override the page title for the frontend app | ||
# VUE_APP_TITLE='' | ||
|
||
# Set the default view to load on startup (can be `minimal`, `workspace` or `home`) | ||
# VUE_APP_STARTING_VIEW=home | ||
|
||
# Set the Vue app routing mode (can be 'hash', 'history' or 'abstract') | ||
# VUE_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 | ||
# VUE_APP_VERSION=2.0.0 | ||
|
||
# Directory for conf.yml backups | ||
# BACKUP_DIR=./user-data/ | ||
|
||
# Setup any other user defined vars by prepending VUE_APP_ to the var name | ||
# VUE_APP_pihole_ip=http://your.pihole.ip | ||
# VUE_APP_pihole_key=your_pihole_secret_key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,3 @@ jobs: | |
collapsibleThreshold: '25' | ||
failOnDowngrade: 'false' | ||
path: 'yarn.lock' | ||
updateComment: 'true' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.