Thank you for investing your time in contributing to our project! Any contribution you make will be reflected on either one of Chess Mazes deployment sites, as per your PR.
- Production (
prod
branch) - chess-mazes.vercel.app
-
Fork the repo
-
Clone the repo and checkout the
main
branch (replace<your-username>
with your GitHub username):git clone https://github.com/<your-username>/chess-mazes.git cd chess-mazes git checkout main
-
Install NPM packages
npm install
-
Run the development server
npm run dev
-
Open localhost:5173 with your browser to see the result.
-
Before committing your changes, run the tests to make sure everything is working as expected, and lint the code to make sure it follows the project's style guidelines:
npm run test npm run lint