feat(01-01): create directory skeleton and per-package doc.go placeholders

- internal/{db,session,tablos,tasks,files}/doc.go (D-02 placeholder packages)
- internal/db/{queries,sqlc}, templates/, migrations/, bin/, static/ via .gitkeep
- 'go build ./internal/...' compiles cleanly
- cmd/web, cmd/worker, internal/web are deliberately deferred to Plans 01-02 / 01-03
This commit is contained in:
Arthur Belleville 2026-05-14 17:53:55 +02:00
parent aa90008d95
commit 4de96854b5
No known key found for this signature in database
11 changed files with 11 additions and 0 deletions

0
backend/bin/.gitkeep Normal file
View file

View file

@ -0,0 +1,3 @@
// Package db is a Phase 1 placeholder. The pgxpool wiring and sqlc-generated
// queries land in Plan 01-03 (Foundation Wave 3) and Phase 3 (Tablos schema).
package db

View file

View file

View file

@ -0,0 +1,2 @@
// Package files is a Phase 1 placeholder; the upload/storage implementation lands in Phase 5.
package files

View file

@ -0,0 +1,2 @@
// Package session is a Phase 1 placeholder; the session/cookie implementation lands in Phase 2.
package session

View file

@ -0,0 +1,2 @@
// Package tablos is a Phase 1 placeholder; the tablo CRUD implementation lands in Phase 3.
package tablos

View file

@ -0,0 +1,2 @@
// Package tasks is a Phase 1 placeholder; the kanban task implementation lands in Phase 4.
package tasks

View file

0
backend/static/.gitkeep Normal file
View file

View file