Conversation
Add Ent (entgo.io) by Meta as a third Go ORM option alongside GORM and sqlc. Ent provides code-first schema definitions with compile-time safety and a graph traversal API. - Schema: add "ent" to GoOrmSchema enum - Templates: go.mod.hbs (deps), database.go.hbs (database/sql init), models.go.hbs (input types), handlers.go.hbs (CRUD for all 4 frameworks), main.go.hbs (init block), ent/schema/ (User + Post schemas), ent/generate.go - CLI: prompt option, post-install display name - Web: constant.ts entry, tech-resource-links - Processors: readme-generator (features, structure, db setup) Scaffolds compile with go build for all framework combos: gin+ent, echo+ent, fiber+ent, chi+ent, gin+ent+grpc, fiber+ent+none-logging
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
Marve10s
added a commit
that referenced
this pull request
Apr 11, 2026
## New Tools (18 additions across all ecosystems) ### TypeScript - **Algolia** search engine (#125) - **Vercel** deployment with compat rules (#137) - **GraphQL Yoga + Pothos** API option (#139) - **Tauri** desktop app addon (#142) - **i18n** category: i18next + next-intl (#149) ### Rust - **tracing + env-logger** logging category (#126) - **anyhow + thiserror + eyre** error handling category (#135) - **Diesel** ORM (#140) - **Rocket** web framework (#143) - **moka + redis** caching category (#144) ### Go - **Fiber** web framework (#127) - **Chi** web framework (#133) - **zerolog + slog** logging (#138) - **Ent** ORM (#145) ### Python - **Flask** web framework (#128) - **Litestar** web framework (#136) - **authlib + jwt** auth category (#141) - **Strawberry** GraphQL category (#148) ## Infrastructure - Adding new tool options guideline (3,000+ lines, 7 files) - PR-aware smoke tests (--force-option, --force-non-none, --partition) - Strengthened CI: test:release expanded, smoke tests block PRs - Compatibility rules guideline with template parity checks - Meilisearch template fix for v0.57 API changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
database/sqlwith Ent schema files ready for code generation viago generate ./entFiles changed (15)
packages/types/src/schemas.ts"ent"toGoOrmSchemaenumpackages/types/src/option-metadata.tsEntlabel overrideapps/cli/src/prompts/go-ecosystem.tstemplates/go-base/go.mod.hbsentgo.io/ent,lib/pq,go-sqlite3depstemplates/go-base/cmd/server/main.go.hbstemplates/go-base/internal/database/database.go.hbsdatabase/sqltemplates/go-base/internal/models/models.go.hbstemplates/go-base/internal/handlers/handlers.go.hbstemplates/go-base/ent/generate.go.hbs//go:generatedirective for Ent code gentemplates/go-base/ent/schema/user.go.hbstemplates/go-base/ent/schema/post.go.hbsapps/web/src/lib/constant.tsTECH_OPTIONS.goOrmapps/web/src/lib/tech-resource-links.tspackages/template-generator/src/processors/readme-generator.tsapps/cli/src/helpers/core/post-installation.tsTest plan
cli-builder-sync.test.tspasses (351 pass, 1 pre-existing fail from i18n/rustCaching)go build ./...: