-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
44 lines (35 loc) · 1.49 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
40
41
42
43
44
# Your Sentry Data Source Name (DSN)
# See https://docs.sentry.io/product/sentry-basics/dsn-explainer/
# e.g. https://[email protected]/here
SENTRY_DSN=${SENTRY_DSN}
# The environment tag to associate with sentry entries
# See https://docs.sentry.io/product/sentry-basics/environments/
# e.g. localhost
SENTRY_ENVIRONMENT=${SENTRY_ENVIRONMENT}
# The node environment this service is being run in.
# e.g. production, testing, or development
NODE_ENV=${NODE_ENV}
# The npm log level that you want the logger to emit.
# See: https://github.com/winstonjs/winston#logging-levels
# e.g. error, warn, info, http, verbose, debug, silly
LOG_LEVEL=${LOG_LEVEL}
# The port the SSH service will listen on
# See https://nodejs.org/api/net.html#serverlistenoptions-callback
SSH_PORT=${SSH_PORT}
# The hostname the SSH service will listen on
# See https://nodejs.org/api/net.html#serverlistenoptions-callback
SSH_HOST=${SSH_HOSTNAME}
# A filepath to the host key to use for this server
# e.g. ./keys/host.key
SSH_HOST_KEY_PATH=${SSH_HOST_KEY_PATH}
# This is for local dev
export NODE_TLS_REJECT_UNAUTHORIZED=0
# The base url where the permanent API is hosted
# e.g. http://local.permanent.org/api
PERMANENT_API_BASE_PATH=${LOCAL_TEMPORARY_AUTH_TOKEN}
# FusionAuth credentials
# See https://fusionauth.io/docs/v1/tech/apis/api-keys
FUSION_AUTH_HOST=${FUSION_AUTH_HOST}
FUSION_AUTH_KEY=${FUSION_AUTH_KEY}
FUSION_AUTH_SFTP_CLIENT_ID=${FUSION_AUTH_SFTP_CLIENT_ID}
FUSION_AUTH_SFTP_CLIENT_SECRET=${FUSION_AUTH_SFTP_CLIENT_SECRET}