forked from subzerocloud/postgrest-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
36 lines (29 loc) · 743 Bytes
/
.env
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
# Docker specific configs
# use only letters and numbers for the project name
COMPOSE_PROJECT_NAME=postgreststarterkit
# Global configs
DEVELOPMENT=1
JWT_SECRET=reallyreallyreallyreallyverysafe
# DB connection details (used by all containers)
DB_HOST=db
DB_PORT=5432
DB_NAME=app
DB_SCHEMA=api
DB_USER=authenticator
DB_PASS=authenticatorpass
# OpenResty
POSTGREST_HOST=postgrest
POSTGREST_PORT=3000
# PostgREST
DB_ANON_ROLE=anonymous
DB_POOL=10
#MAX_ROWS=
#PRE_REQUEST=
SERVER_PROXY_URI=http://localhost:8080/rest/
# PostgreSQL container config
# Use this to connect directly to the db running in the container
SUPER_USER=superuser
SUPER_USER_PASSWORD=superuserpass
# RabbitMQ
RABBITMQ_DEFAULT_USER=admin
RABBITMQ_DEFAULT_PASS=adminpass