|
Revision 1, 1.3 kB
(checked in by jweiss, 14 months ago)
|
|
re-import from rubyforge
|
| Line | |
|---|
| 1 | Webistrano - Capistrano deployment the easy way |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | About: |
|---|
| 6 | Webistrano is a Web UI for managing Capistrano deployments. |
|---|
| 7 | It lets you manage projects and their stages like test, production, |
|---|
| 8 | and staging with different settings. Those stages can then |
|---|
| 9 | be deployed with Capistrano through Webistrano. |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | Installation: |
|---|
| 13 | |
|---|
| 14 | 1. Configuration |
|---|
| 15 | |
|---|
| 16 | Copy config/webistrano_config.rb.sample to config/webistrano_config.rb |
|---|
| 17 | and edit appropriatly. In this configuration file you can set the mail |
|---|
| 18 | settings of Webistrano. |
|---|
| 19 | |
|---|
| 20 | 2. Database |
|---|
| 21 | |
|---|
| 22 | Copy config/database.yml.sample to config/database.yml and edit to |
|---|
| 23 | resemble your setting. You need at least the production database. |
|---|
| 24 | The others are optional entries for development and testing. |
|---|
| 25 | |
|---|
| 26 | Then create the database structure with Rake: |
|---|
| 27 | |
|---|
| 28 | > cd webistrano |
|---|
| 29 | > RAILS_ENV=production rake db:migrate |
|---|
| 30 | |
|---|
| 31 | 3. Start Webistrano |
|---|
| 32 | |
|---|
| 33 | > cd webistrano |
|---|
| 34 | > ruby script/server -d -p 3000 -e production |
|---|
| 35 | |
|---|
| 36 | Webistrano is then available at http://host:3000/ |
|---|
| 37 | |
|---|
| 38 | The default user is `admin`, the password is `admin`. Please change the password |
|---|
| 39 | after the first login. |
|---|
| 40 | |
|---|
| 41 | Author: |
|---|
| 42 | Jonathan Weiss <jw@innerewut.de> |
|---|
| 43 | |
|---|
| 44 | License: |
|---|
| 45 | Code: BSD, see LICENSE.txt |
|---|
| 46 | Images: Right to use in their provided form in Webistrano installations. No other right granted. |
|---|