Skip to content

Commit

Permalink
add image sequencer
Browse files Browse the repository at this point in the history
  • Loading branch information
jywarren committed Nov 1, 2018
1 parent 0ab622c commit 975c118
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion builder/chroot-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -219,13 +219,22 @@ tar -xzf node-v9.7.1-linux-armv6l.tar.gz
sudo cp -r node-v9.7.1-linux-armv6l/* /usr/local/
sudo apt-get install git

# install infragram in the web public folder:
cd /var/www/

# install infragram in the web public folder:
git clone https://github.com/publiclab/infragram.git
cd infragram
npm install
cd /

echo "Installing image-sequencer"
# install image-sequencer in the web public folder:
git clone https://github.com/publiclab/image-sequencer.git
cd image-sequencer
npm install

cd /

echo "Installing rpi-serial-console script"
wget -q https://raw.githubusercontent.com/lurch/rpi-serial-console/master/rpi-serial-console -O usr/local/bin/rpi-serial-console
chmod +x usr/local/bin/rpi-serial-console
Expand Down
1 change: 1 addition & 0 deletions builder/files/var/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ <h2>Public Lab Pi Camera Kit</h2>

<p><a href="http://pi.local/infragram/pi/">Access Infragram software</a></p>
<p><a href="http://pi.local/cam/">Access the camera</a></p>
<p><a href="http://pi.local/image-sequencer/examples/">Access Image Sequencer software</a></p>

</body>
</html>

0 comments on commit 975c118

Please sign in to comment.