Get Redmine source from miiiCasa github repo (bundler integrated and migrate_from_trac.rake modified)
install bundler and bundle install
12
sudo gem install bundler
bundle install
Setup mysql database and user
123
create database redmine character set utf8;
create user 'redmine'@'localhost' identified by 'my_password';
grant all privileges on redmine.* to 'redmine'@'localhost';
cp config/database.yml.example config/database.yml and modify it based on previous settings.
cp config/configure.yml.example config/configure.yml and modify it.