-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env.template
31 lines (24 loc) · 934 Bytes
/
.env.template
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
# default to port 3000 for the startup service
PORT=3000
# The GO_ENV=localhost is needed in order for the storage-node to load the configuration from the .env file, otherwise it tries to load it from an AWS SSM Parameter Store.
GO_ENV="localhost"
DEBUG=1
VERSION="local"
IMAGE_TAG="local"
# Update this with your own key
ENCRYPTION_KEY=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
# Update this for your own display name
DISPLAY_NAME=foo
# For local test
PROD_DATABASE_URL=root:secret@tcp(db:3306)/test?parseTime=true&multiStatements=true&readTimeout=1s
TEST_DATABASE_URL=root:secret@tcp(db:3306)/test?parseTime=true&multiStatements=true&readTimeout=1s
# Update the access token and bucket_name for the node
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
AWS_REGION=us-east-2
AWS_BUCKET_NAME="storage-node-test"
SLACK_DEBUG_URL=""
# For running background jobs
ENABLE_JOB=false
# Disable DB connection
DISABLE_DB_CONN=false