Newer
Older

Lukáš Kratochvíl
committed
# SERVER
SERVER_PORT=4000
# DATABASE
DB_USER=admin
DB_PASSWORD=password
DB_NAME=film-db

Lukáš Kratochvíl
committed
DB_PORT=5432
# PRISMA

Lukáš Kratochvíl
committed
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@postgres:${DB_PORT}/${DB_NAME}?schema=public

Lukáš Kratochvíl
committed
# ADMINER
ADMINER_PORT=8080
# CLIENT
CLIENT_PORT=3000