Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/betich/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.
https://github.com/betich/robo2-color-guessor

Last synced: 3 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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](./img/game_menu.png)

![Sample](./img/easy.png)

## Instructions

First, get poetry and pnpm installed in your system.

```bash
pip install poetry
npm install -g pnpm
```

Then, clone the repository and install the dependencies.

```bash
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:

```bash
cd server
poetry install
```

in another terminal:

```bash
cd color-guesser
poetry install
```

in the other terminal:

```bash
cd client
pnpm install
```

Finally, run the server and the client.

`/server`:

```bash
poetry run start
```

`/color-guesser`:

```bash
poetry run start
```

`/client`:

```bash
pnpm dev
```