Content
Debian Wheezy (7.1) install instructions
Added by Jason Weir almost 11 years ago
been having fits getting 2.4 installed on a new Debian box - I’ve put these instructions together that seem to work, anyone want to test them out..
#apt-get install autoconf automake bison bzip2 curl g gawk git libffi-dev libgdbm-dev libmysqlclient-dev libncurses5-dev libreadline6-dev libssl-dev libtool libyaml-dev make mysql-server pkg-config ssh vim
#\curl -sSL https://get.rvm.io | bash -s stable —ruby
#source /usr/local/rvm/scripts/rvm
#rvm install ruby-1.8.7-p371
#gem install bundler
#git clone https://github.com/opf/openproject.git
#cd openproject
#git checkout 2.4.0
#cp config/additional_environment.rb.example config/additional_environment.rb
#vi config/additional_environment.rb
add at the end “config.i18n.enforce_available_locales = false”
#cp config/database.yml.example config/database.yml
#vi config/database.yml
enter production database settings (comment out the rest)
#rvm rubygems latest-1.8
#RAILS_ENV=“production” ./setup.rb —without postgres
#RAILS_ENV=“production” script/server -d
Jason