Tracks v0.2.0: Phase 0 Complete - Foundation Ready for Production
· 6 min read
I'm excited to announce Tracks v0.2.0, marking the completion of Phase 0 (Foundation). The CLI tool can now generate production-ready Go web applications with clean architecture, comprehensive tooling, and multi-database support.
What's in v0.2.0
Status: Phase 0 - Foundation ✅ Complete
Available Now:
- ✅ Complete
tracks newcommand with project scaffolding - ✅ Multi-database driver support (LibSQL, SQLite3, PostgreSQL)
- ✅ Development tooling (Makefile, Air, Docker Compose, golangci-lint, Mockery, CI/CD)
- ✅ Auto-generated
.envand automatic Docker service startup - ✅ Production-ready templates with health endpoints, logging, and configuration
- ✅ Comprehensive documentation with tutorials and guides
Try It:
# Install (requires Go 1.25+)
go install github.com/anomalousventures/tracks/cmd/tracks@v0.2.0
# Create a new project
tracks new myapp
cd myapp
# Start development (auto-starts Docker, runs with live reload)
make dev
