13 lines
324 B
Plaintext
13 lines
324 B
Plaintext
# Server Configuration
|
|
# --------------------
|
|
PORT=4000
|
|
ENVIRONMENT=dev # Options: dev, stage, prod
|
|
|
|
# -----------------------------------------
|
|
# PostgreSQL Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB USER=postgres
|
|
DB_PASSWORD=your_secure_password
|
|
DB_NAME=snippetbox
|
|
DB_SSLMODE=disable #t'disable' or 'require' |