JavaScript disabled You need to activate JavaScript in order to use OpenProject! Learn more
Added by Stefano Nardo almost 10 years ago
How to upgrade a manual installation?
Hi Stefano,
if you installed OpenProject via Git and run it in the production environment, the following steps should be working: Go to your OpenProject root folder and execute the following commands:
git checkout Gemfile.lock git pull bundle install RAILS_ENV=production bundle exec rake db:migrate RAILS_ENV=production bundle exec rake assets:precompile
After restarting the server you should be finished.
For updating OpenProject 4.0.2 to 4.0.4 these steps should be sufficient. For future updates you may have to add one step after git pull:
git pull
bower install
Best, Robin
Replies (1)
Hi Stefano,
if you installed OpenProject via Git and run it in the production environment, the following steps should be working:
Go to your OpenProject root folder and execute the following commands:
After restarting the server you should be finished.
For updating OpenProject 4.0.2 to 4.0.4 these steps should be sufficient.
For future updates you may have to add one step after
git pull
:Best,
Robin