-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
29 lines (24 loc) · 865 Bytes
/
.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
BASE_IMAGE_NODE_ALPINE=node:15.8.0-alpine3.12
####
## The database used by xe and postgraphql.
POSTGRES_USER=postgres
POSTGRES_PASSWORD=pgpass
POSTGRES_DB=postgres
# Needed for psql
PGUSER=postgres
PGPASSWORD=pgpass
####
# Graphile and grpahile-migrate
ROOT_DATABASE_URL=postgres://postgres:pgpass@db/postgres
DATABASE_OWNER=exampleapp
DATABASE_OWNER_PASSWORD=exampleapppass
OWNER_DATABASE_URL=postgres://exampleapp:exampleapppass@db/exampleapp
DATABASE_URL=postgres://exampleapp_gql_authenticator:exampleapppass@db/exampleapp
SHADOW_DATABASE_URL=postgres://exampleapp_gql_authenticator:exampleapppass@db/exampleapp_shadow
DATABASE_AUTHENTICATOR=exampleapp_gql_authenticator
DATABASE_VISITOR=exampleapp_gql_viewer
##########
JWT_SECRET=test_key
# Change these when running multiple versions of the application in parallel
#DATBASE_PORT=5433
#GRAPHQL_PORT=5001