Monorepo for Min or Max, a multiplayer card game where you lay low or play it to the max!
pnpm i & pnpm dev will get you there, but only after you've created your own .env! Check our .env.test files in each app for reference to create your own .env and/or .env.local.
Make sure you have pnpm installed, and an appropriate version of Node. We recommend Mise, which will automatically switch to the Node version specified for this project and enable corepack to also bring in the appropriate version of pnpm, once you cd into the root directory.
pnpm dev
Navigate to localhost:5137 to see the core web app.
Everything should just work!
... If not, make sure you've created your own .env / .env.local files, as described elsewhere in this README.
With the dev servers running, run:
pnpm test
To update all dependencies, including the package.json to point to their latest versions, run:
pnpm up -r --latest
This uses native pnpm functionality
Refer to the package.json for more scripts, namely linting & formatting.