give claude bot a .env file for development
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Tests / Go tests (push) Successful in 13s

This commit is contained in:
2026-08-21 17:52:59 -06:00
parent 2a4dd82643
commit f0ecd16cb0
2 changed files with 14 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
# 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.
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
# AUTH0_DOMAIN / AUTH0_CLIENT_ID / AUTH0_CLIENT_SECRET / AUTH0_CALLBACK_URL
# are intentionally omitted: with DEV_AUTH_ENABLED=true below, real Auth0
# login never runs, so config.Load() doesn't require them.
DEV_AUTH_ENABLED=true
PORT=8090