Getting Started

Before running the development server, run:

npm install
# or
yarn install
# or
pnpm install
# or
bun install

Next, run either of the following to test the app:

npm run test
# or
yarn test
# or
pnpm test
# or
bun test

Following that, run either of these to run the lint command:

npm run lint
# or
yarn lint
# or
pnpm lint
# or
bun lint

And finally, run the 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.