34 lines
610 B
Bash
34 lines
610 B
Bash
# ============================= 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"
|