This repository contains the MVP for Krovva.
The project is a NextJS-based template, developed as a Worldcoin mini-app to be deployed into the WorldApp ecosystem.
dev
: The development branch where all new features and updates are implemented.
main
: The production branch, strictly for stable releases.
Fork the project
git clone https://github.com/YOUR_USERNAME/krovva-mvp.git
cd krovva-mvp
git remote add upstream https://github.com/Krovva/krovva-mvp.git
git remote -v
git fetch --all
git checkout main
git checkout -b dev upstream/dev
git checkout -b feature/your-feature-name dev
Navigate to the project directory and install all necessary dependencies using:
pnpm install
To run the project:
pnpm dev
Open http://localhost:3000 with your browser to see the result.