-
-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): allow to set a custom browser TZ/LOCALE using env vars
- Loading branch information
1 parent
22bd7ab
commit 0b71637
Showing
7 changed files
with
88 additions
and
22 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,17 +1,21 @@ | ||
# The host address to bind to | ||
# HOST="::" | ||
HOST="::" | ||
# The port to listen to for incoming requests. Default is `8091` | ||
# PORT=8091 | ||
PORT='' | ||
# The absolute path to the directory where all files will be stored. Default is `<path to your zui dir>/store` | ||
# STORE_DIR | ||
STORE_DIR='' | ||
# Used as secret for session. If not provided the default one is used | ||
# SESSION_SECRET | ||
SESSION_SECRET="zwavejsisawesome" | ||
|
||
|
||
# NETWORK_KEY | ||
# HTTPS=true | ||
# S0 Key | ||
NETWORK_KEY='' | ||
HTTPS='' | ||
# Set the cookie [secure](https://github.com/expressjs/session#cookiesecure) option. | ||
# USE_SECURE_COOKIE | ||
USE_SECURE_COOKIE='' | ||
# Mostly needed for docker users. | ||
# https://zwave-js.github.io/node-zwave-js/#/usage/external-config?id=specifying-an-external-config-db-location | ||
# ZWAVEJS_EXTERNAL_CONFIG | ||
ZWAVEJS_EXTERNAL_CONFIG='' | ||
|
||
# Browser preferred locale/tz to use for date/time formatting | ||
TZ='' | ||
LOCALE='' |
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
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