-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
39 lines (32 loc) · 1.7 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ------------------------------------------------------------------------------
# Environment variables will be available to the main process via the
# node global `process.env.<variable>`. To make these variables available in the
# renderer process, they must also be declared in the next.config.js file in
# the webpack config using the `EnvironmentPlugin`.
# ------------------------------------------------------------------------------
# App-specific environment variable.
# Similar purpose as NODE_ENV but for our own use, and at times
# may not be in sync with the NODE_ENV the app is running under.
# When running the app via `yarn start:dev` then this is set to 'development'.
# For all other cases, this should be set to 'production'.
APP_ENV="production"
# Set the log level to one of 'trace', 'debug', 'info', 'warn', or 'error'.
LOG_LEVEL="info"
# Sentry auth token for uploading sourcemaps.
# https://dragonrealms-phoenix.sentry.io/settings/auth-tokens/
SENTRY_AUTH_TOKEN="sntrys_xxx"
# Sentry DSN for posting events.
# https://dragonrealms-phoenix.sentry.io/settings/projects/phoenix/keys/
SENTRY_DSN="https://xxx@yyy.ingest.us.sentry.io/zzz"
# To allow Sentry to upload events from renderer process.
# Our Content-Security Policy allow lists this domain.
# Infer this from the SENTRY_DSN.
SENTRY_INGEST_DOMAIN="https://xxx.ingest.us.sentry.io"
# Sentry organization and project for tagging events.
# The Sentry organization is the same as the GitHub organization.
# The Sentry project is the same as the GitHub repository.
SENTRY_ORG="dragonrealms-phoenix"
SENTRY_PROJECT="phoenix"
# https://docs.sentry.io/platforms/javascript/guides/electron/configuration/tree-shaking/
__SENTRY_DEBUG__=false
__SENTRY_TRACING__=false