Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/betich/robo2-color-guessor
- Owner: betich
- Created: 2024-04-22T17:59:28.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-17T17:49:45.000Z (7 months ago)
- Last Synced: 2024-05-18T18:02:09.800Z (7 months ago)
- Language: TypeScript
- Size: 2.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```