A small app that allows users to text a message for display on a screen in real time.
Thanks to Barrell for creating the original version in php. This version is a rewrite in python.
Visit http://downloads.vagrantup.com/ and follow instructions
# Download the VM
vagrant box add precise64 http://files.vagrantup.com/precise64.box
# Clone the code
git clone https://github.com/joeracker/sweet-board.git
# setup dependant submodules
cd sweet-board
git submodule init
git submodule update
cd sweet-board/app
mv secrets_example.py secrets.py
# Add your authtoken and sid
vim secrets.py
# Complete this from the base directory of the repo
vagrant up
vagrant ssh
cd /sweet-board-src/
gunicorn -w 4 -b 0.0.0.0:5000 sweetboard:app
# You can also use the Python web server
# python sweetboard.py
Gunicorn can be run as a daemon with the --daemon switch:
gunicorn -w 4 -b 0.0.0.0:5000 sweetboard:app --daemon
You should now have a running app, available at http://localhost:5050/. The code for the app is in "app".