Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 1.68 KB

README.md

File metadata and controls

67 lines (44 loc) · 1.68 KB

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

Getting Started

Install Dependencies

  • 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.

Git Hooks

This project uses Git hooks to maintain code quality and enforce commit message standards.

Pre-commit

  • Formats staged files with Prettier.
  • Lints staged files with ESLint.

Commit Message

  • Enforces commit message conventions using Commitlint and Commitizen to assist in crafting those messages.

To create a commit using Commitizen, run:

npm run ctzn

Pre-push

  • Executes all tests with Jest before allowing code to be pushed to the repository.

Bypassing Hooks

  • If you need to bypass the hooks, use the --no-verify flag. However, please exercise caution and use this option responsibly.

To run the test suite locally, execute:

npm test

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

Here is snap of create account page

Create-page

This is the response page of the successful Account created

Success-page