untrack sample .env files, add .env.example placeholders

Live .env files (with real OAuth secrets) were tracked. Replaced with .env.example
templates. Existing .env files kept on disk so the sample still runs.

NOTE: prior history (8c5deb7, 88c2860) on gitea/main still contains the leaked
GOOGLE_CLIENT_SECRET. Rotate the credential in Google Cloud Console and decide
whether to rewrite history.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-29 05:33:34 -03:00
parent 5f9cac1947
commit 38c2cfe50f
4 changed files with 13 additions and 44 deletions

View File

@@ -1,21 +0,0 @@
# =============================================================================
# sample room — Managed App (Fixture Invoicing)
# =============================================================================
# This room wraps examples/fixture-invoicing/ — a deliberate fixture, not a real app.
DEPLOYMENT_NAME=sample
NETWORK_NAME=sample_network
# =============================================================================
# PORTS (host-exposed)
# =============================================================================
BACKEND_PORT=8120
FRONTEND_PORT=3120
DB_PORT=5532
# =============================================================================
# DATABASE (Postgres)
# =============================================================================
POSTGRES_DB=fixture
POSTGRES_USER=postgres
POSTGRES_PASSWORD=localdev123

View File

@@ -0,0 +1,14 @@
# =============================================================================
# sample room — Copy to .env and customize
# =============================================================================
DEPLOYMENT_NAME=sample
NETWORK_NAME=sample_network
BACKEND_PORT=8120
FRONTEND_PORT=3120
DB_PORT=5532
POSTGRES_DB=fixture
POSTGRES_USER=postgres
POSTGRES_PASSWORD=localdev123