/robo2-color-guessor

Project for Robotics Project II subject of the Robotics AI program, in collaboration with students from the Industrial Design program, Faculty of Architecture.

Primary LanguageTypeScript

Color Guessor

Project for Robotics Project II subject of the Robotics AI program, in collaboration with students from the Industrial Design program, Faculty of Architecture.

Color Guessor

Sample

Instructions

First, get poetry and pnpm installed in your system.

pip install poetry
npm install -g pnpm

Then, clone the repository and install the dependencies.

git clone https://github.com/betich/robo2-color-guessor.git
cd robo2-color-guessor

Then, install the dependencies in server and color-guesser directories.

in one terminal:

cd server
poetry install

in another terminal:

cd color-guesser
poetry install

in the other terminal:

cd client
pnpm install

Finally, run the server and the client.

/server:

poetry run start

/color-guesser:

poetry run start

/client:

pnpm dev