VSCODE
Node.js
Git
Prettier - Code formatter - Format your code
ESLint - check your code better cleaner code with certain rules
Prisma - ORM Tool with Database
Simple React Snippets - sfc
Tailwind CSS IntelliSense
JavaScript (ES6) code snippets
npx create-next-app@latest
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
npx shadcn@latest init
npx shadcn@latest add button
npx shadcn@latest add dropdown-menu
npx shadcn@latest add sheet
npx shadcn@latest add card
npx shadcn@latest add label
npx shadcn@latest add input
npm install next-themes
npm i -D prisma @prisma/client (INSTALL PRISMA & PRISMA CLIENT)
npx prisma init (PRISMA INITIALIZATION)
npx prisma generate (GENERATE CLIENT)
npx prisma migrate dev --name init (MIGRATE MODEL)
npx tsx ./db/seed (SEED DATABASE)
npx prisma studio (RUN PRISMA STUDIO TOOL)
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
GIT Branch
git log --oneline
git branch feature/session-no commit_id
git push origin feature/session-no