CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
architecture.md
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| a56c6cf | 1 | # Architecture overview |
| 2 | ||
| 3 | ## Goals | |
| 4 | ||
| 5 | - Keep the surface small. | |
| 6 | - Prefer boring, well-understood primitives. | |
| 7 | - Fast cold-start on Bun. | |
| 8 | ||
| 9 | ## Components | |
| 10 | ||
| 11 | - **HTTP layer:** Hono. | |
| 12 | - **Data:** PostgreSQL via Drizzle. | |
| 13 | - **Jobs:** in-process, cron-driven. | |
| 14 | ||
| 15 | ## Non-goals | |
| 16 | ||
| 17 | - Multi-tenant isolation at the data layer. | |
| 18 | - Horizontal scale-out (v1 is single-node). |