Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ MAIL_PASSWORD=
[email protected]
[email protected]

# GitHub repository and token for creating bug report issues from the Workstation
GITHUB_URL=
GITHUB_TOKEN=


WORKSTATION_CACHE_DIR=

ELASTIC_VERSION=8.5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,21 @@ splitgen.url=
manual.color.depth.url=
console.startPage.showOnStartup=false

# Error reporting
# valid ErrorReportingMethod options: email, github
console.ErrorReportingMethod=email
console.AutoSendExceptions=true

# Email
console.MailServer=${MAIL_SERVER}
console.MailUser=${MAIL_USER}
console.MailPassword=${MAIL_PASSWORD}
console.FromEmail=${MAIL_SENDER}
console.HelpEmail=${MAIL_RECEIVER}
console.AutoSendExceptions=true

# GitHub
console.GitHubErrorProjectURL=${GITHUB_URL}
console.GitHubErrorProjectAccessToken=${GITHUB_TOKEN}

# Local cache directory
console.localCache.rootDirectory=${WORKSTATION_CACHE_DIR}