Here is the thing that I want to do. What I want is that As soon as I
commit the changes to my svn which resides on beanstalk i want those
changes to get reflected to my website too.
Can any one tell me a step by step process to do it? Or provide me a
link for the same.
There is really no "automatic" way to update the working copy on your
server. But, if you have SSH you can update your repo, login to your
server over SSH, and in the root directory you have under version
control type this command:
svn update
You should see some files fly by you with your recently changed files.
Then you need to restart your server. This differs depending on the
web server you use (and various modules like mod_rails). For example,
if I'm using Passenger I just need to type the following at the
command line to restart the server instance(s):
touch tmp/restart.txt
And then hit your site in a web browser. That should be it.
However, like MaD pointed out, if you used Capistrano all of this
would be done with one simple Rake task. Capistrano is really the way
to go if you want to perform as few steps as possible to deploy/
redeploy your Rails app.
There is really no "automatic" way to update the working copy on your
server. But, if you have SSH you can update your repo, login to your
server over SSH, and in the root directory you have under version
control type this command:
You could have a commit hook. Restarting your production app every
time you commit a change doesn't sound like a great idea though