Files
thoth/.devcontainer/.env
Dylan Knutson efbe79c539
Some checks failed
CI / Check Style (push) Successful in 14s
CI / Run Tests (push) Failing after 19s
CI / Run Clippy (push) Successful in 1m3s
Initialize loco app
2024-11-30 13:30:38 -08:00

17 lines
477 B
Bash

RUST_BACKTRACE=full
RUST_LIB_BACKTRACE=1
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=postgres
POSTGRES_HOSTNAME=localhost
POSTGRES_PORT=5432
DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOSTNAME}:${POSTGRES_PORT}/${POSTGRES_DB}
PGADMIN_DEFAULT_EMAIL=admin@example.com
PGADMIN_DEFAULT_PASSWORD=password
PGADMIN_LISTEN_PORT=8080
# no password required
PGADMIN_CONFIG_SERVER_MODE=False
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED=False