kirimase
kirimase copied to clipboard
Build full-stack Next.js apps, incredibly fast
Hey, Just playing with kirimase 👍 Add I thought it could be great to have a script to start un postgre database directly in docker. I used to dev with...
When you init a new kirimase app, the gitignore file does not include .env. If you mistakenly add to git, then you will expose your secrets.
**Is your feature request related to a problem? Please describe.** Currently the kirimase scaffold generates a dashboard that routes to the `/dashboard` route. This works well, but for Saas project...
**Config File** ``` { "hasSrc": true, "packages": [ "shadcn-ui", "drizzle", "lucia" ], "preferredPackageManager": "npm", "t3": false, "alias": "@", "analytics": true, "rootPath": "src/", "componentLib": "shadcn-ui", "driver": "sqlite", "provider": "turso", "orm": "drizzle",...
## Background This PR will allow users to load schemas from a JSON file when running `generate` command, hence skipping the manual data entry. This will make it easy to...
**Is your feature request related to a problem? Please describe.** 'kirimase generate' works wonderfully to scaffold the MVC of something, e.g. Projects. The only problem is its all processed and...
fixes #158 drizzle is now enforcing the use of the Client instance to handle connections to PlanetScale instead of using connect. link [here](https://orm.drizzle.team/docs/get-started-mysql#planetscale)
drizzle with planetscale generates code like this ``` export const connection = connect({ url: env.DATABASE_URL }); ``` however docs say its not recommended way of handling connection should be changed...