- Nextjs 15
- Prisma
- BetterAuth
- Shadcn
- Tanstack Tables
Change file env.example
to .env
Download the required dependencies according to the package manager you are using.
bun install
npm install
# or alternative
Synchronize database with prisma schema.
bunx prisma push db
npx prisma push db
Create prisma client
bunx prisma generate
npx prisma generate
Start the application with bun run dev
command and start the seed process by sending a GET request to the /api/seed
endpoint.
And you're ready for development.