操作
如何在 Heroku 上安装 Redmine¶
- 在本地安装 Redmine
git clone git://github.com/redmine/redmine.git cd redmine git checkout 1.4-stable cp config/database.yml.example config/database.yml # edit config/database.yml bundle install rake config/initializers/session_store.rb
- 创建一个 Heroku 应用程序
heroku create
- 从 .gitignore 中删除这些行
/config/initializers/session_store.rb /public/plugin_assets /Gemfile.lock /Gemfile.local
- 配置 Heroku 以在不带 sqlite 组的情况下运行 bundle install,否则会失败
heroku config:add BUNDLE_WITHOUT="sqlite"
- 似乎 Heroku cedar 堆栈仍然不支持 BUNDLE_WITHOUT,因此我们必须在 Gemfile 中注释 sqlite 组
# edit Gemfile, comment sqlite groups bundle install git add Gemfile Gemfile.lock git commit -m "remove sqlite gem from bundle"
- 提交更改并推送至 Heroku
git add -A git commit -m "changes for heroku" git push heroku 1.4-stable:master
- 迁移并填充数据库
heroku run rake db:migrate heroku run rake redmine:load_default_data
(来自 http://lluisgili.heroku.com/lluis/published/redmine+on+heroku)
由 Lluís Gili 更新 近 12 年前 · 1 次修订