Created
November 12, 2019 11:12
-
-
Save mistificator/03109a80ab2393f70fa42a6ae63436b0 to your computer and use it in GitHub Desktop.
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
redmine plugin install | |
1. | |
https://stackoverflow.com/a/4496648/2010648 | |
Windows | |
As pointed by answers below, you can use SET instead | |
SET HTTP_PROXY=http://user:password@host:port | |
SET HTTPS_PROXY=%HTTP_PROXY% | |
2. | |
https://www.redmineup.com/pages/plugins/agile/installation | |
Installation | |
Unzip plugin into ./plugins/. This would result in a directory-path like: | |
./plugins/redmine_agile/init.rb | |
Go to redmine root folder (ex. cd /var/www/redmine) | |
Install dependent ruby gems by following command: | |
bundle install --without development test | |
Migrate database and copy assets by following command: | |
bundle exec rake redmine:plugins NAME=redmine_agile RAILS_ENV=production | |
You now need to restart Redmine so that it shows the newly installed plugin in the list of installed plugins ("Administration -> Plugins"). | |
Go to "Administration -> Agile" and setup plugin global settings. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment