13 lines
216 B
Bash
13 lines
216 B
Bash
# Project settings
|
|
PROJECT_NAME=express-postgres
|
|
|
|
# PostgreSQL settings
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=postgres
|
|
POSTGRES_HOST=localhost
|
|
POSTGRES_PORT=5432
|
|
|
|
# Express settings
|
|
PORT=3000
|