Created
August 5, 2011 10:56
-
-
Save hamstar/1127306 to your computer and use it in GitHub Desktop.
commands to install chiliproject on a dreamhost system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm ~/.gem* | |
gem install bundler | |
PATH=$PATH:/usr/lib/ruby/gems/1.8/bin | |
cd ~ | |
git clone git://github.com/chiliproject/chiliproject.git | |
cd chiliproject | |
git checkout stable | |
cp * ../example.com/ -R | |
cd ../example.com | |
# Make sure database is working | |
bundle install --without postgres rmagick test | |
bundle exec rake generate_session_store | |
RAILS_ENV=production bundle exec rake db:migrate | |
# No output is no good, check database.yml | |
RAILS_ENV=production bundle exec rake redmine:load_default_data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment