- Go module at github.com/felt-app/felt with go-libsql pinned to commit hash - Full directory structure per research recommendations (cmd/leaf, internal/*, frontend/) - Makefile with build, run, run-dev, test, frontend, all, clean targets - LibSQL database with WAL mode, foreign keys, and embedded migration runner - SvelteKit SPA stub served via go:embed - Package stubs for all internal packages (server, nats, store, auth, clock, etc.) - go build and go vet pass cleanly Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
394 B
Modula-2
11 lines
394 B
Modula-2
module github.com/felt-app/felt
|
|
|
|
go 1.24.0
|
|
|
|
require github.com/tursodatabase/go-libsql v0.0.0-20251219133454-43644db490ff // no tagged releases — pinned to commit 43644db490ff
|
|
|
|
require (
|
|
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
|
|
github.com/libsql/sqlite-antlr4-parser v0.0.0-20240327125255-dbf53b6cbf06 // indirect
|
|
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
|
|
)
|