-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.env.sample
31 lines (25 loc) · 1.04 KB
/
.env.sample
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
export POSTGRES_HOST=localhost # for local development
# export POSTGRES_HOST=postgres # for docker/kubernetes
export POSTGRES_PORT=5432
export POSTGRES_USER=test_user
export POSTGRES_PASSWORD=test_password
export POSTGRES_DB=test_db
# DATABASE_URL will be used in preference if it exists
# export DATABASE_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB
export DATABASE_URL=$DATABASE_URL
# these are needed to create the database
# and create the postgres user/password initially
# if they are not set in env, these are the default values
export POSTGRES_SUPERUSER=postgres
export POSTGRES_SUPERUSER_PASSWORD=
export POSTGRES_SUPERUSER_DB=postgres
# for transactional emails
export SENDGRID_API_KEY=
export DEFAULT_NAME=
export DEFAULT_EMAIL=
# Change this to a FQDN as needed
export EXTERNAL_URL="https://localhost:8080"
export TWILIO_ACCOUNT="your Account SID from twil.io/console"
export TWILIO_TOKEN="your Token from twil.io/console"
export TWILIO_VERIFY_NAME="calvinx"
export TWILIO_VERIFY="servicetoken"