You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> CoderBot is a RaspberryPI-based programmable robot for educational purposes. Check the [project website](https://www.coderbot.org) for more information.
4
+
>
5
+
> For further information about development and technical documentation, see the [Wiki](https://github.com/CoderBotOrg/coderbot/wiki).
5
6
6
-
The module provide a simple web interface to a raspberry py "robot".
7
+
This repository contains the backend, exposing the [CoderBot API](https://github.com/CoderBotOrg/backend/wiki/API-v2).
7
8
8
-
See the [wiki](https://github.com/CoderBotOrg/coderbot/wiki) for the documentation
9
+
### Quickstart
9
10
11
+
Prerequisites:
10
12
13
+
```bash
14
+
sudo apt install python3 python3-venv
15
+
```
16
+
17
+
Be sure you have Python **3.6**. You may need to use `python3.6` and `python3.6-venv` packages on some repositories with python3 already pointing to **3.7** (e.g. debian unstable/sid).
- Legacy JQuery web application: [localhost:5000/old](http://localhost:5000/old);
43
+
- API v2: [localhost:5000/v2](http://localhost:5000/v2);
44
+
- New Vue web application: [localhost:5000/](http://localhost:5000/) (assuming a [vue-app](https://github.com/coderbotorg/vue-app) build is placed in the `dist/` folder);
45
+
- Documentation: [localhost:5000/docs](http://localhost:5000/docs) assuming a [docs](https://github.com/coderbotorg/docs) build is placed in the `cb_docs/` folder);
46
+
- Swagger UI dynamic documentation of the API v2: [localhost:5000/v2/ui/index.html](http://localhost:5000/v2/ui/index.html) (once you cloned the [swagger-ui](https://github.com/coderbotorg/swagger-ui) repository inside the backend folder).
0 commit comments