Files
inventory-plus-plus/.env.gitea-claude-bot-dev
T
angel f0ecd16cb0
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Tests / Go tests (push) Successful in 13s
give claude bot a .env file for development
2026-08-21 17:52:59 -06:00

14 lines
589 B
Bash

# 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