Viku
Viku

Reputation: 129

TeamCity and Rails deployment

Can anyone please point me to a documentation/demo on how to deploy a Ruby on Rails web app using Teamcity once build passed? The scenario is to: deploy the web app, by starting the web server on the build machine and then firing UI functional tests. (Note: Would like to know if all these steps can be automated using Teamcity?)

Upvotes: 4

Views: 2369

Answers (1)

DaveStephens
DaveStephens

Reputation: 1126

You can use Capistrano to deploy with TeamCity. Capistrano is great for deploying Rails apps, you can automate it reasonably easily so that TeamCity simply fires your Capistrano job.

More on Capistrano https://github.com/capistrano/capistrano/wiki/

You probably want to use RVM with TC too.

Upvotes: 4

Related Questions