Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Running Bootstrap Listr on the Raspberry Pi

Mathieu Aubin edited this page Mar 5, 2016 · 5 revisions

This article is work-in-progress

This guide will show you the steps to setup a Raspberry Pi to run Bootstrap-Listr. For this guide I'll be using a Raspberry Pi 2 with Raspian “Jessie” (2016-02-26) installed, but it should work the same for other models

Pre-requisites

Node and npm

By default, Raspian ships with Node 0.10 and no npm, so we need to update using the steps provided on the Node website:

# Upgrade Node to 4.x
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs

# Install npm
sudo apt-get npm

Server/PHP

In this example, we're going to use nginx as our web-server and php-fpm as our FastCGI Process Manager for PHP.

# Install nginx
sudo apt-get nginx php5-fpm
Clone this wiki locally