This is a Next.js project using App Router, TypeScript, Tanstack React-Query, and Shadcn bootstrapped with create-next-app
.
First, run the client 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.
This application also includes a mock server for use in local development.
Run the Mock Server for simulated HTTP calls and OAuth2 flows:
npm run dev:mock-server
# or
cd mock-server
npm run dev
The mock server runs at http://localhost:2000 by default.
Alternatively, run the client and the mock server in the same terminal:
npm run dev:all