User:Tancre/Others/How to set a live collective webpage (Raspberry Pi+Etherpad)

From XPUB & Lens-Based wiki

How to set a 'live' collective webpage

What do you need?

  • web server (Rapberry pi + apache2)
  • etherpad
  • Wget

How does it work?

Looping wget is possible to download every x sexonds the text from a pad into a html file.
The html file can be accessed online through the server.

What - Where

/var/www/html/liveHTML

  • README.txt
  • live.sh

How

live.sh

#!/bin/bash

while true                                                       # run a loop
do
wget -O live.tmp https://pad.xpub.nl/p/test/export/txt           # download the txt of a pad's link into a file.tmp
mv live.tmp live.html                                            # rename .tmp into .html
sleep 5                                                          # 5 seconds delay
done                                                             # restart the loop