mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 09:31:16 +00:00
29 lines
No EOL
619 B
Text
29 lines
No EOL
619 B
Text
# Environment
|
|
NODE_ENV=production
|
|
|
|
# Postgres config
|
|
POSTGRES_DB=<placeholder>
|
|
POSTGRES_USER=<placeholder>
|
|
POSTGRES_PASSWORD=<placeholder>
|
|
DB_HOST=postgres
|
|
|
|
DATABASE_URL=postgresql://<USER>:<PASS>@${DB_HOST}:<PORT>/${POSTGRES_DB}?schema=<PROD-SCHEMA>
|
|
|
|
# Redis
|
|
REDIS_HOST=redis
|
|
|
|
REDIS_PORT=<placeholder>
|
|
REDIS_PASSWORD=<same_as_defined_in_docker_compose_file>
|
|
|
|
# Fastify
|
|
SERVER_PORT=<placeholder>
|
|
SERVER_HOST=<placeholder>
|
|
|
|
# Security
|
|
JWT_ACCESS_SECRET=<placeholder>
|
|
|
|
# Minio
|
|
MINIO_ROOT_USER=<username>
|
|
MINIO_ROOT_PASSWORD=<password_more_or_equal_to_8_characters>
|
|
MINIO_DEFAULT_BUCKETS=<bucket_name>
|
|
MINIO_ENDPOINT=<url> |