You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add missing simpleaccounts_db env vars and update documentation (#449)
Issues fixed:
- Backend failed to start due to missing SIMPLEACCOUNTS_DB_* environment variables
- post-start.sh used wrong hostnames (localhost vs db/redis)
- Documentation had outdated npm commands (npm run dev vs npm start)
Changes:
- Add SIMPLEACCOUNTS_DB_HOST, SIMPLEACCOUNTS_DB_PORT, etc. to .env.example
- Add same env vars to Coder template.tf for seamless Coder support
- Update post-start.sh to auto-detect Coder vs DevContainer environment
- Fix npm commands in CLAUDE.md, AGENTS.md, and other docs
- Update README.md architecture diagram to show localhost networking
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Developer <developer@simpleaccounts.io>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: AGENTS.md
+20-3Lines changed: 20 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,17 @@
4
4
5
5
For complete setup instructions including prerequisites, database setup, environment configuration, and running the application, see **[SETUP.md](./SETUP.md)**.
6
6
7
-
**Quick Start:**
7
+
**Quick Start (DevContainer - Recommended):**
8
+
9
+
The devcontainer automatically sets up PostgreSQL, Redis, and all environment variables.
10
+
11
+
```bash
12
+
# From repo root - run in separate terminals
13
+
npm run frontend # Terminal 1 - starts Vite dev server (port 3000)
14
+
npm run backend:run # Terminal 2 - starts Spring Boot (port 8080)
0 commit comments