1: Create a new Rails app – we’ll call is ‘deploytest’
$ rails deploytest
$ cd deploytest
2: Create a local Git repository for it
$ git init
$ git add *
$ git commit -a -m ‘initial commit’
$ git status
3: Create a couple of Capistrano files
$ capify .
4: Edit config/deploy.rb
# The name of your app
set :application, “deploytest”
# The directory on [...]
Posts Tagged ‘capistrano’
Setup Capistrano to deploy Rails application on Amazon EC2 with Git
February 17th, 2010
No Comments
Step-By-Step setup slicehost server (fedora) for rails application.
July 22nd, 2009
1 Comment
Hi all as I worked on setting up 4 to 5 servers, I thought its better to document the stuff so that I/developers can refer it, So I am documenting the step-by-step process for setting up the slicehost server for rails application work with nginx as a web server and mongrel as a rails application [...]
Send mail after capistrano deployment
May 7th, 2008
No Comments
I got a very good plugin at http://code.google.com/p/capistrano-mailer/.
Just copied the details below to have use in future.
It is a Capistrano Plugin AND a Rails Plugin
Ever wanted to be emailed whenever someone on the team does a cap deploy of trunk or some tag to some server. Wouldn’t it be nice to know about [...]

