Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.34 KB

File metadata and controls

43 lines (34 loc) · 1.34 KB

blockchain inventory management system (bims)

A frontend web application for brainbox research instiute

Getting Started

Install dependencies

npm install

Install dependencies using make

make install

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

Resources: Get help from the following resources

To learn more about Next.js, take a look at the following resources:

Useful Git Commands

  • Delete Local Branches Not In Remote

git fetch -p && for branch in $(git for-each-ref --format '%(refname) %(upstream:track)' refs/heads | awk '$2 == "[gone]" {sub("refs/heads/", "", $1); print $1}'); do git branch -D $branch; done