This game has two parts: the game itself and the server. In order to run the full project, you must run two processes.
- Download the source code
- Run the backend (AKA the server)
cd backend
cp .env.dist .env
npm install
npm run start
- Run the frontend (AKA the game)
cd frontend
cp .env.dist .env
npm install
npm run start:dev
# Run `npm run` to check all the commands