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

https://github.com/zepdev/self-driving-car


https://github.com/zepdev/self-driving-car

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

## client
- Runs on RCcar (RaspberryPi). Two applications, `app` and `sender`, they should run together.
- app: Main application for driving the car. Start via `bash run.sh`.
- sender: This is a docker application that sends data to the server. Run it with docker-compose:

```
$ docker-compose build
$ docker-compose up -d
```
Read the logs with
```
$ docker-compose logs --tail=20
```

Info: The RPi should have internet connection through WiFi.

## server
Simple http message collector. Gets data from RCcar and stores it in Amazon S3. Run on an EC2 instance with docker-compose:

```
$ docker-compose build
$ docker-compose up -d
```