Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 1.41 KB

README.md

File metadata and controls

54 lines (43 loc) · 1.41 KB

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, install dependencies:

pnpm install

And, run the development server:

pnpm dev

Open http://localhost:3000 with your browser to see the result.

Project Strucutre

POS_NEXTJS/
├── prisma/                 # Prisma folder for database schema and migrations
│   └── schema.prisma       # Define your database schema here
└── src/                    # Source code directory
    ├── components/         # Reusable components
        ├── pages/          # Page Level Components
        ├── ui/             # Shadcn UIs
    ├── db/                 # Database Clients
    ├── hooks/              # Custom hooks
    ├── lib/                # Library files
    ├── providers/          # Context providers
    ├── services/           # API service files
    │   └── api/            # API service folder
    ├── stores/             # Store files
    ├── types/              # Type definitions
    ├── utils/              # Utility files
    └── validations/        # Validation files

Tech Stacks

Frontend
  Shadcn UI
  Headless
  Axios
  React Query
  Zustand

Backend
  Prisma
  Posgresql