claude bot: move db env vars to workflow from .env
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Tests / Go tests (push) Successful in 16s

This commit is contained in:
2026-08-21 19:06:49 -06:00
parent 6313817cd4
commit a3e11a6ad1
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
# TODO: delete this file if unused
# This is on the only .env file commited to git. # This is on the only .env file commited to git.
# It's purpose is to provide an environment from which it can operate the app and do full development. # It's purpose is to provide an environment from which it can operate the app and do full development.
+2
View File
@@ -117,3 +117,5 @@ jobs:
NODE_VERSION: 24.x NODE_VERSION: 24.x
POSTGRES_HOST: postgres POSTGRES_HOST: postgres
POSTGRES_PORT: 5432 POSTGRES_PORT: 5432
DATABASE_URL: postgres://app_client:app_password@localhost:5432/inventory_2?sslmode=disable
TEST_DATABASE_URL: postgres://app_client:app_password@localhost:5432/inventory_2_test?sslmode=disable