Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 704 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 704 Bytes

Maze Game

A Maze Game web application, you can play individually and against your friends. And also visualize how the maze is generated with Hunt and Kill algorithm and solved with backtracking.

Building this project with React + Typescript + Vite.

Happy for more contributors to join.

Environment Setup

1.Clone the repository:

git clone https://github.com/your-username/Maze-Game.git

2.Install dependencies:

cd Maze-Game
cd backend
npm install
cd ../frontend
npm install
  1. Start the backend development server.
cd backend
npm run dev
  1. Start the front development server.
cd frontend
npm run dev