mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
17 lines
No EOL
388 B
Text
17 lines
No EOL
388 B
Text
# 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
|
|
|
|
DATABASE_URL=postgresql://<placeholder>:<placeholder>@${DB_HOST}:5432/${POSTGRES_DB}?schema=
|
|
|
|
# Express
|
|
SERVER_PORT=<placeholder>
|
|
|
|
# Security
|
|
JWT_ACCESS_SECRET=<placeholder> |