From ba6d80a76f9a0dacbde4a435707155fe73aa9700 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 13 Jun 2026 10:41:17 -0400 Subject: [PATCH] Updating env files --- .env.docker.sample | 2 +- .env.local.sample | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.docker.sample b/.env.docker.sample index 6c2c1d6..50203ae 100644 --- a/.env.docker.sample +++ b/.env.docker.sample @@ -5,6 +5,6 @@ DB_PASSWORD=password DB_HOST=auth_db DB_PORT=5432 DB_SSLMODE=disable -DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:5432/${DB_NAME} +DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME} ENABLE_REGISTRATION=true ALLOWED_ORIGINS="http://textsender.com" diff --git a/.env.local.sample b/.env.local.sample index 2625bcf..21ea4da 100644 --- a/.env.local.sample +++ b/.env.local.sample @@ -5,6 +5,6 @@ DB_PASSWORD=password DB_HOST=localhost DB_PORT=5432 DB_SSLMODE=disable -DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:5432/${DB_NAME} +DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME} ENABLE_REGISTRATION=true ALLOWED_ORIGINS="http://textsender.com"