Added missing steps to setup instructions

I think these instructions should now be complete from a fresh pi installation.
pull/40/head
Rory Aronson 2014-11-05 15:31:47 -08:00
parent 86797c50ad
commit 4497faf723
1 changed files with 14 additions and 6 deletions

View File

@ -20,24 +20,32 @@ Raspberry PI
------------
Update the RPi, install ruby, firmate and the arduino IDE
```
sudo apt-get update
sudo apt-get install git-core
sudo apt-get install ruby-dev
sudo apt-get install sqlite3-dev
sudo apt-get install arduino
sudo apt-get install bundler
```
retrieving code from github:
```
git clone https://github.com/FarmBot/farmbot-raspberry-pi-controller
```
prepping ruby:
```
cd farmbot-raspberry-pi-controller
'bundle install --without test development' from the project directory
OR
'bundle install' (for developers)
sudo gem install bundler
sudo gem install sqlite3 -v '1.3.10'
bundler update
bundle install
```
Setup the database
```
rake db:migrate
```
Arduino
-------