Skip to content

Instantly share code, notes, and snippets.

@hamstar
Created August 5, 2011 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hamstar/1127306 to your computer and use it in GitHub Desktop.
Save hamstar/1127306 to your computer and use it in GitHub Desktop.
commands to install chiliproject on a dreamhost system
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