- Add worker storage layer with PostgreSQL/sqlc setup - Add migration files for worker backbone schema - Add job runner and built-in jobs implementation - Add Redis key definitions for worker state management - Archive socket-session-loop milestone (completed/renamed) - Update roadmap current.md and foundation-alignment phase - Add socket endpoint integration and runtime smoke tests - Add infra-check, worker-storage-check, worker-storage-gen CLI tools - Update API socket server and config - Add pubspec dependencies and client socket endpoint changes - Add config tests for API and worker services
10 lines
262 B
YAML
10 lines
262 B
YAML
version: "2"
|
|
sql:
|
|
- engine: "postgresql"
|
|
schema: "internal/storage/postgres/migrations"
|
|
queries: "internal/storage/postgres/queries"
|
|
gen:
|
|
go:
|
|
package: "sqlc"
|
|
out: "internal/storage/postgres/sqlc"
|
|
sql_package: "pgx/v5"
|