Files
schedtxt_auth/.env.docker.sample
T
phoenix 0cab4e8530
Rust Build / Test Suite (push) Successful in 1m6s
Rust Build / Check (push) Successful in 1m7s
Rust Build / Rustfmt (push) Successful in 1m59s
Rust Build / Clippy (push) Successful in 1m43s
Rust Build / build (push) Successful in 2m28s
Update postgresql port (#11)
Reviewed-on: phoenix/textsender-auth#11
2026-06-13 11:26:43 -04:00

11 lines
312 B
Bash

SECRET_KEY=NULqYIzgt28bTiyziCd7IOO7b6LnWDW!
DB_NAME=textsender_auth_db
DB_USER=textsender_auth
DB_PASSWORD=password
DB_HOST=auth_db
DB_PORT=5432
DB_SSLMODE=disable
DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
ENABLE_REGISTRATION=true
ALLOWED_ORIGINS="http://textsender.com"