Commit 4f0c23d
feat: scaffold Phase 0 project infrastructure
Backend (Rust):
- Initialize Cargo workspace with strict clippy lints
- Set up 9 module stubs (auth, core, conversation, ai, tools, email, notifications, storage, audit)
- Implement API layer with RFC 7807 ProblemDetails error handling
- Add database infrastructure (sqlx pool, migrations, TestContext with postgresql_embedded)
- Implement Axum HTTP server with /healthz and /readyz health check endpoints
- Add Event Bus (tokio broadcast channel) with DomainEvent enum
- Create xtask subproject for future API type generation
- Add UUID v7 ID generation utility
Frontend (Vue):
- Initialize Vite 8 beta (Rolldown) + Vue 3 + TypeScript strict mode
- Configure ESLint (oxlint + eslint) with zero warnings policy
- Set up openapi-fetch + openapi-typescript for API contract
- Create AppLayout and AuthLayout with Vue Router guards
- Add base UI components (BaseButton, BaseInput, BaseCard)
- Add useAuth composable skeleton
Infrastructure:
- Add docker-compose.dev.yml (PostgreSQL 16 + MailHog)
- Expand Makefile with dev-up, lint, test targets (pnpm)
- Add GitHub Actions CI (backend + frontend + OpenAPI validation)
- Add .env.example with all environment variables
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>1 parent 7c9da64 commit 4f0c23d
File tree
72 files changed
+9385
-7
lines changed- .cargo
- .github/workflows
- frontend
- .vscode
- public
- src
- api
- assets
- components
- __tests__
- base
- composables
- layouts
- router
- __tests__
- views
- migrations
- src
- api
- extractors
- middleware
- routes
- modules
- ai
- audit
- auth
- conversation
- core
- email
- notifications
- storage
- tools
- tests
- common
- xtask
- src
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
72 files changed
+9385
-7
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
0 commit comments