This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shopping-lists/project.env
AndrewTrieu 08128374c1 First commit
2022-12-27 19:38:34 +02:00

17 lines
577 B
Bash

# Database configuration for PostgreSQL (running in container called "database-p1-e8774b8e-c7a9-4cce-a779-3b59be02206d")
POSTGRES_USER=username
POSTGRES_PASSWORD=password
POSTGRES_DB=database
# Database configuration for Flyway (used for database migrations)
FLYWAY_USER=username
FLYWAY_PASSWORD=password
FLYWAY_URL=jdbc:postgresql://database-p1-e8774b8e-c7a9-4cce-a779-3b59be02206d:5432/database
# Database configuration for Deno's PostgreSQL driver
PGUSER=username
PGPASSWORD=password
PGHOST=database-p1-e8774b8e-c7a9-4cce-a779-3b59be02206d
PGPORT=5432
PGDATABASE=database