"Initial setup
download tracks from http://getontracks.org/
the release version was broken for me a few months ago, so we used the GIT repository (TODO)
git clone git://github.com/bsag/tracks.git
create database (mysql) and grant access
create database tracks;
grant all privileges on tracks to 'tracks'@'localhost' identified by 'magicpassword';
ideally these permissions should be substantially tightened
edit config/database.yml:
production:
adapter: mysql
database: tracks
host: localhost
username: tracks
password: magicpassword"