<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Setting Up A Secure Subversion Source Code Repository</title>
	<atom:link href="http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/</link>
	<description>Helping web developers and operations bridge the deployment gap</description>
	<lastBuildDate>Tue, 09 Mar 2010 21:31:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matthias Marschall</title>
		<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/comment-page-1/#comment-1885</link>
		<dc:creator>Matthias Marschall</dc:creator>
		<pubDate>Wed, 09 Dec 2009 08:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.agileweboperations.com/?p=472#comment-1885</guid>
		<description>woah, Naresh, wait a minute. You&#039;re mixing up everything here. Let me try to sort it out for you:
First of all, you cannot deploy your app to unfuddle.com. Unfuddle.com is your SVN repository - the place where your code lives. AFAIK, they do not provide any hosting space for deploying your applications. Your deploy.rb shows that you want to deploy to localhost. That sounds ok. When you use unfuddle.com as your SVN repository, you do not need a local one. You let capistrano check out your app from the unfuddle repo to your local server.

That said, you should set your unfuddle SVN repo in your deploy.rb file as the :repository.
When defining roles, you must not use any port numbers (:3000 in your case).
The :server_name is the name of the host you want to deploy your application to - in your case: localhost.

And last but not least, you do not have to care too much about that svn co statement as capistrano will do the checkout from unfuddle to your localhost for you.
Hope this helps to get you back on track.</description>
		<content:encoded><![CDATA[<p>woah, Naresh, wait a minute. You&#8217;re mixing up everything here. Let me try to sort it out for you:<br />
First of all, you cannot deploy your app to unfuddle.com. Unfuddle.com is your SVN repository &#8211; the place where your code lives. AFAIK, they do not provide any hosting space for deploying your applications. Your deploy.rb shows that you want to deploy to localhost. That sounds ok. When you use unfuddle.com as your SVN repository, you do not need a local one. You let capistrano check out your app from the unfuddle repo to your local server.</p>
<p>That said, you should set your unfuddle SVN repo in your deploy.rb file as the :repository.<br />
When defining roles, you must not use any port numbers (:3000 in your case).<br />
The :server_name is the name of the host you want to deploy your application to &#8211; in your case: localhost.</p>
<p>And last but not least, you do not have to care too much about that svn co statement as capistrano will do the checkout from unfuddle to your localhost for you.<br />
Hope this helps to get you back on track.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naresh</title>
		<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/comment-page-1/#comment-1884</link>
		<dc:creator>Naresh</dc:creator>
		<pubDate>Wed, 09 Dec 2009 07:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.agileweboperations.com/?p=472#comment-1884</guid>
		<description>Hi All,

I want to deploy this simple ruby on rails application using capistrano, from local machine to unfuddle.com account. and I have account on unfuddle.. http://feeder.unfuddle.com/svn/feeder_fd

I have a local SVN Repository on my root path
/root/svn/#{application name}, 

This is my config/deploy.rb file..

set :application, &quot;feeder2&quot;
set :repository,  &quot;file:///root/svn/feeder2&quot;  #here i dont know wht to put ???????????????????????? Do i need to put here this http://feeder.unfuddle.com/svn/feeder_fd or my local SVN repo ???????????

set :scm, :subversion
# Or: `accurev`, `bzr`, `cvs`, `darcs`, `git`, `mercurial`, `perforce`, `subversion` or `none`

role :web, &quot;127.0.0.1:3000&quot;                          # Your HTTP server, Apache/etc
role :app, &quot;127.0.0.1:3000&quot;                          # This may be the same as your `Web` server
role :db,  &quot;127.0.0.1:3000&quot;, :primary =&gt; true # This is where Rails migrations will run
role :db,  &quot;127.0.0.1:3000&quot;

set :deploy_via, :remote_cache

set :server_name, &quot;http://feeder.unfuddle.com&quot;

# If you are using Passenger mod_rails uncomment this:
# if you&#039;re still using the script/reapear helper you will need
# these http://github.com/rails/irs_process_scripts

# namespace :deploy do
#   task :start {}
#   task :stop {}
#   task :restart, :roles =&gt; :app, :except =&gt; { :no_release =&gt; true } do
#     run &quot;#{try_sudo} touch #{File.join(current_path,&#039;tmp&#039;,&#039;restart.txt&#039;)}&quot;
#   end
# end

How do I get this running ? I want to do it ASAP, Can u please help me,

and ya wht is the meaning of this statement ?? 
svn co svn+ssh://dan@kis1.hosteurope.net/ local-dev

let me correct if i m wrong ?
1) dan is username,,but which username? username of repo account of unfudlle ???
2) kis1.hosteurope.net is subdomain like mine is feeder.unfuddle.com ???

and after doing this ? How to deploy an application using cap deploy:setup, :check  or anything else ????

Awating for Reply

Naresh</description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>I want to deploy this simple ruby on rails application using capistrano, from local machine to unfuddle.com account. and I have account on unfuddle.. <a href="http://feeder.unfuddle.com/svn/feeder_fd">http://feeder.unfuddle.com/svn/feeder_fd</a></p>
<p>I have a local SVN Repository on my root path<br />
/root/svn/#{application name}, </p>
<p>This is my config/deploy.rb file..</p>
<p>set :application, &#8220;feeder2&#8243;<br />
set :repository,  &#8220;file:///root/svn/feeder2&#8243;  #here i dont know wht to put ???????????????????????? Do i need to put here this <a href="http://feeder.unfuddle.com/svn/feeder_fd">http://feeder.unfuddle.com/svn/feeder_fd</a> or my local SVN repo ???????????</p>
<p>set :scm, :subversion<br />
# Or: `accurev`, `bzr`, `cvs`, `darcs`, `git`, `mercurial`, `perforce`, `subversion` or `none`</p>
<p>role :web, &#8220;127.0.0.1:3000&#8243;                          # Your HTTP server, Apache/etc<br />
role :app, &#8220;127.0.0.1:3000&#8243;                          # This may be the same as your `Web` server<br />
role :db,  &#8220;127.0.0.1:3000&#8243;, :primary =&gt; true # This is where Rails migrations will run<br />
role :db,  &#8220;127.0.0.1:3000&#8243;</p>
<p>set :deploy_via, :remote_cache</p>
<p>set :server_name, &#8220;http://feeder.unfuddle.com&#8221;</p>
<p># If you are using Passenger mod_rails uncomment this:<br />
# if you&#8217;re still using the script/reapear helper you will need<br />
# these <a href="http://github.com/rails/irs_process_scripts">http://github.com/rails/irs_process_scripts</a></p>
<p># namespace :deploy do<br />
#   task :start {}<br />
#   task :stop {}<br />
#   task :restart, :roles =&gt; :app, :except =&gt; { :no_release =&gt; true } do<br />
#     run &#8220;#{try_sudo} touch #{File.join(current_path,&#8217;tmp&#8217;,'restart.txt&#8217;)}&#8221;<br />
#   end<br />
# end</p>
<p>How do I get this running ? I want to do it ASAP, Can u please help me,</p>
<p>and ya wht is the meaning of this statement ??<br />
svn co svn+ssh://dan@kis1.hosteurope.net/ local-dev</p>
<p>let me correct if i m wrong ?<br />
1) dan is username,,but which username? username of repo account of unfudlle ???<br />
2) kis1.hosteurope.net is subdomain like mine is feeder.unfuddle.com ???</p>
<p>and after doing this ? How to deploy an application using cap deploy:setup, :check  or anything else ????</p>
<p>Awating for Reply</p>
<p>Naresh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Ackerson</title>
		<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/comment-page-1/#comment-295</link>
		<dc:creator>Dan Ackerson</dc:creator>
		<pubDate>Thu, 26 Feb 2009 10:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.agileweboperations.com/?p=472#comment-295</guid>
		<description>Hi Eric,

you&#039;re absolutely right - I failed to backlink the subsequent article on &lt;a href=&quot;http://www.agileweboperations.com/leveraging-subversion-hooks-for-fun-and-profit/&quot;&gt;svn hooks&lt;/a&gt;.  I hope this helps you!</description>
		<content:encoded><![CDATA[<p>Hi Eric,</p>
<p>you&#8217;re absolutely right &#8211; I failed to backlink the subsequent article on <a href="http://www.agileweboperations.com/leveraging-subversion-hooks-for-fun-and-profit/">svn hooks</a>.  I hope this helps you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eric_88888888</title>
		<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/comment-page-1/#comment-294</link>
		<dc:creator>eric_88888888</dc:creator>
		<pubDate>Thu, 26 Feb 2009 09:50:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.agileweboperations.com/?p=472#comment-294</guid>
		<description>Dear Dan,

great to see - took me a while to finish svn server - unfortunatly I did not found your page first.

A small article about svn hooks could be helpful - I am lost in there.

best regards,

eric</description>
		<content:encoded><![CDATA[<p>Dear Dan,</p>
<p>great to see &#8211; took me a while to finish svn server &#8211; unfortunatly I did not found your page first.</p>
<p>A small article about svn hooks could be helpful &#8211; I am lost in there.</p>
<p>best regards,</p>
<p>eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Mestre</title>
		<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/comment-page-1/#comment-100</link>
		<dc:creator>Ricardo Mestre</dc:creator>
		<pubDate>Tue, 30 Dec 2008 21:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.agileweboperations.com/?p=472#comment-100</guid>
		<description>Hi Dan,

Thanks, and I wish you also a great 2009! 

Greetings,

Ricardo</description>
		<content:encoded><![CDATA[<p>Hi Dan,</p>
<p>Thanks, and I wish you also a great 2009! </p>
<p>Greetings,</p>
<p>Ricardo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Ackerson</title>
		<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/comment-page-1/#comment-98</link>
		<dc:creator>Dan Ackerson</dc:creator>
		<pubDate>Mon, 29 Dec 2008 10:24:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.agileweboperations.com/?p=472#comment-98</guid>
		<description>Hi Ricardo,

glad you liked it...was fun to research and write about it. Second part was even cooler ;). 

Wishing you a Happy New Year!</description>
		<content:encoded><![CDATA[<p>Hi Ricardo,</p>
<p>glad you liked it&#8230;was fun to research and write about it. Second part was even cooler <img src='http://www.agileweboperations.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . </p>
<p>Wishing you a Happy New Year!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Mestre</title>
		<link>http://www.agileweboperations.com/setting-up-a-secure-subversion-source-code-repository/comment-page-1/#comment-97</link>
		<dc:creator>Ricardo Mestre</dc:creator>
		<pubDate>Mon, 29 Dec 2008 10:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.agileweboperations.com/?p=472#comment-97</guid>
		<description>Hi Dan, 

Great article, and I&#039;m looking forward to the second part of it! Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Dan, </p>
<p>Great article, and I&#8217;m looking forward to the second part of it! Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
