Webistrano is a Web UI for managing Capistrano deployments. It lets you manage projects and their stages like test, production, and staging with different settings. Those stages can then be deployed with Capistrano through Webistrano.
Install heroku gem:
gem install heroku
Register on heroku.com (without going into detail).
Copy config/webistrano_config.rb.sample
to config/webistrano_config.rb
and edit appropriatly. In this configuration file you can set the mail
settings of Webistrano.
Create heroku application by your favorite app-name:
cd webistrano
heroku login
heroku create --stack cedar app-name
Install gems:
rm Gemfile.lock
bundle install --without production
Precompile on local:
RAILS_ENV=production bundle exec rake assets:precompile
Deploy on heroku:
git push heroku master
Create the database structure with Rake on heroku:
heroku run rake db:setup
Webistrano is then available at http://app-name.herokuapp.com/
The default user is admin
, the password is admin!
. Please change the
password after the first login.
Ichiro Kimura kag.web@gmail.com
Code: BSD, see LICENSE.txt Images: Right to use in their provided form in Webistrano installations. No other right granted.