Rails-like CLI for building projects with Nextjs and Drizzle ORM
To get started, install Kirimase globally with your preferred package manager.
npm i -g kirimase
-
Add
Quickly initialise relevant files and configuration for:- Drizzle ORM (with your flavour of SQL and provider)
- TRPC (working with Nextjs App Directory)
- NextAuth
- Shadcn UI
kirimase add
-
Generate Similar to rails scaffold / generate, this command allows you to quickly generate:
- Models (schema declaration + query/mutation logic)
- Controllers (API + TRPC routes to manage querying and mutating of model)
- Views + Components (quickly scaffold route with components to perform CRUD operations)
kirimase generate