2023-06-20 20:05:15 +00:00
|
|
|
# Postgres config
|
|
|
|
POSTGRES_DB=<placeholder>
|
|
|
|
POSTGRES_USER=<placeholder>
|
|
|
|
POSTGRES_PASSWORD=<placeholder>
|
|
|
|
# POSTGRES CONTAINER NAME
|
|
|
|
DB_HOST=postgres
|
|
|
|
|
|
|
|
# Use this instead if you want to use locally
|
|
|
|
# DB_HOST=localhost
|
|
|
|
|
2023-07-12 18:05:17 +00:00
|
|
|
DATABASE_URL=postgresql://<placeholder>:<placeholder>@${DB_HOST}:5432/${POSTGRES_DB}?schema=<placeholder>
|
|
|
|
|
|
|
|
# Redis
|
|
|
|
REDIS_HOST=redis
|
|
|
|
REDIS_PORT=6379
|
|
|
|
REDIS_PASSWORD=not_a_production_pass # Please change this
|
2023-06-20 20:05:15 +00:00
|
|
|
|
|
|
|
# Express
|
|
|
|
SERVER_PORT=<placeholder>
|
|
|
|
|
|
|
|
# Security
|
|
|
|
JWT_ACCESS_SECRET=<placeholder>
|