Repository for frontend implementation of an Appointment Management Interface for Patient to book appointments and maange their list of scheduled appointments; both past and upcoming.
This project is a NextJs version 15.0.3. To run the production ready version, run:
npm run build && start
# or
yarn build && start
# or
pnpm build && start
# or
bun build && startOpen http://localhost:3000 with your browser to see the result.
To run the dev mode, run:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devYou can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
Testing was intended to be done with Vite and React testing library. To run test:
npm run test
# or
yarn test
# or
pnpm test
# or
bun test