This is a website to help calculate matchups in Pokémon Champions, made with Next.js.
The frontend is exposed at https://calc.soulsbros.ch.
- MongoDB database for data persistency
- Node.js 25
- Docker
# install dependencies
npm install
# bootstrap local configuration
cp .env.example .env.localThen adapt the values in the .env.local file depending on which external services you need (see "Dependencies" section).
# start DB
docker compose up mongodb -d
# start frontend
npm run devThen open your browser and head to http://localhost:3000