5 lines
173 B
Bash
5 lines
173 B
Bash
POSTGRES_USER="postgres"
|
|
POSTGRES_PASSWORD="mypassword"
|
|
POSTGRES_DB="postgres"
|
|
|
|
DATABASE_URL="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}" |