blob: 8392c33eccc457d22ecbb541cb6fa5072ad7699f (
plain)
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
|
# ============================= GENERAL ==
# project name
PROJECT_NAME="crimson"
# ================================= WEB ==
# What port to listen on
HTTP_BIND=127.0.0.1
HTTP_PORT=80
# ============================ DATABASE ==
# Do we want the postgres database enabled
POSTGRES_ENABLED=false
# Database authentication
POSTGRES_DB=postgres
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
# ================================= API ==
# Do we want the postgrest api enabled
API_ENABLED=false
# API Jwt Secret
API_SECRET="<base64>"
# API Anonymous role
API_ROLE="anonymous"
# API schema
API_SCHEMA="api"
|