Deploy TeamCity and Rails

Can someone point me to the documentation / demo on how to deploy the Ruby on Rails web application using Teamcity after it is done? The scenario is this: deploying a web application, launching a web server on a build machine, and then running functional tests on the user interface. (Note: I would like to know if all these steps can be automated using Teamcity?)

+4
source share
1 answer

You can use Capistrano to deploy with TeamCity. Capistrano is great for deploying Rails applications, you can easily automate it, so TeamCity just launches your work in Capistrano.

Read more about Capistrano https://github.com/capistrano/capistrano/wiki/

You probably also want to use RVM with TC.

+4
source

Source: https://habr.com/ru/post/1398697/


All Articles