This is a Next.js project bootstrapped with create-next-app
.
- To install the necessary dependencies, run:
npm Install
# or
yarn install
- To run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Once started, Open http://localhost:3000 in your browser to view the application.
This project uses Git hooks to maintain code quality and enforce commit message standards.
- Formats staged files with Prettier.
- Lints staged files with ESLint.
- Enforces commit message conventions using Commitlint and Commitizen to assist in crafting those messages.
npm run ctzn
- Executes all tests with Jest before allowing code to be pushed to the repository.
- If you need to bypass the hooks, use the
--no-verify
flag. However, please exercise caution and use this option responsibly.
npm test
Open http://localhost:3000 with your browser to see the result.