For running the proyect, you have two alternatives, or you run the proyect with docker or install all the dependencies on your computer.
Docker:
docker-compose up -d --build
Locally:
You need to have installed mysql, nodejs and pnpm, then you can setup the proyect running the following commands:
pnpm install
For runnning the server:
cd server && pnpm dev
For runnning the client:
cd client && pnpm dev