Install apache and php
$ sudo apt-get install apache2 php5 php5-mysql php5-curlEnable mod_rewrite
$ cd /etc/apache2/mods-enabled/
$ sudo ln -s ../mods-available/rewrite.loadAdd the apache directory configuration from the README
$ sudo nano /etc/apache2/sites-available/default Symlink your repository into your web content
$ cd /var/www
$ sudo ln -s ~/path/to/repo foodtrucksMake some of your repository files editable by the apache user
$ cd ~/path/to/repo
$ chown -R www-data protectedRestart Apache so the configurations take effect
sudo /etc/init.d/apache2 restartInstall mysql server (this also runs the server)
sudo apt-get install mysql-serverConnect to the server and run the commands from the README (use the root password you setup while installing)
mysql -u root -pAnd you're done!
sudo apt-get install coffeescriptWorkaround bug 777554:
https://bugs.launchpad.net/ubuntu/+source/coffeescript/+bug/777554
Add a link to nodejs on your $PATH
cd ~/bin;
ln -s /usr/bin/node nodejs