Point to correct database
Test / test (push) Failing after 54s Details

This commit is contained in:
Jeff 2024-10-12 11:56:00 -04:00
parent 4d5f5543f8
commit 4021f8c95b
3 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,4 @@
DATABASE="postgres"
POSTGRES_PASSWORD="password" POSTGRES_PASSWORD="password"
VAPID_PRIVATE_KEY="" VAPID_PRIVATE_KEY=""
BASE_URL="http://localhost:5173" BASE_URL="http://localhost:5173"

View File

@ -1,3 +1,4 @@
DATABASE="postgres"
POSTGRES_PASSWORD="testpassword" POSTGRES_PASSWORD="testpassword"
VAPID_PRIVATE_KEY="privatekey" VAPID_PRIVATE_KEY="privatekey"
BASE_URL="http://localhost:5173" BASE_URL="http://localhost:5173"

View File

@ -1,5 +1,5 @@
export default { export default {
database: process.env.DATABASE ?? "database", database: process.env.DATABASE ?? "postgres",
host: "database", host: "database",
user: "postgres", user: "postgres",
password: process.env.POSTGRES_PASSWORD, password: process.env.POSTGRES_PASSWORD,