15 lines
493 B
Text
15 lines
493 B
Text
# people-service — its OWN database (never the shared platform.db)
|
|
NODE_ENV=development
|
|
PEOPLE_API_PORT=3061
|
|
|
|
# Own Postgres DB (the DO backend droplet (lilith-store-backend, wg 10.9.0.5)). Distinct from platform.db (25460) and v2 quinn.db.
|
|
PEOPLE_DB_HOST=127.0.0.1
|
|
PEOPLE_DB_PORT=25461
|
|
PEOPLE_DB_NAME=people
|
|
PEOPLE_DB_USER=people
|
|
PEOPLE_DB_PASSWORD=
|
|
PEOPLE_DB_SSL=false
|
|
PEOPLE_DB_POOL_MAX=10
|
|
|
|
# Shared-secret bearer for /internal/people/* (apps call with this token).
|
|
PEOPLE_SERVICE_TOKEN=
|