<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.5" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Plan to grow</title>
	<link>http://www.carsonified.com/biz-tips/plan-to-grow</link>
	<description>We love the web!</description>
	<pubDate>Thu, 28 Aug 2008 01:47:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>

	<item>
		<title>by: Ian</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-57865</link>
		<pubDate>Thu, 03 Apr 2008 21:54:17 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-57865</guid>
					<description>For my new website I require a host that offers SVN and SSH and I can't find a shared host that does.  The only shared host I can find is dreamhost.

Rackspace wanted £300 per month for their entry level managed server which had SVN and SSH but this is out of our price range at the moment.

Does anybody know of any other hosts who offer a reliable service but are cheaper than the rackspace price above</description>
		<content:encoded><![CDATA[<p>For my new website I require a host that offers SVN and SSH and I can&#8217;t find a shared host that does.  The only shared host I can find is dreamhost.</p>
<p>Rackspace wanted £300 per month for their entry level managed server which had SVN and SSH but this is out of our price range at the moment.</p>
<p>Does anybody know of any other hosts who offer a reliable service but are cheaper than the rackspace price above
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: topfunky</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-441</link>
		<pubDate>Tue, 09 Jan 2007 23:57:28 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-441</guid>
					<description>Even though Capistrano is written in Ruby, I've used it to deploy Perl and PHP apps with ease. Highly recommended.</description>
		<content:encoded><![CDATA[<p>Even though Capistrano is written in Ruby, I&#8217;ve used it to deploy Perl and PHP apps with ease. Highly recommended.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: dylan</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-242</link>
		<pubDate>Mon, 18 Dec 2006 23:14:56 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-242</guid>
					<description>We do a lot of shell scripting/make to make our deployments easy.

For example, we have a script that will autodeploy a new svn/trac server instance, add default users and permissions, etc., as a single command line task.

We make extensive use of our staging environment for testing.  But rather than pushing from staging to production, staging gives us a place to test with large fake data sets, but in an environment with the same replication/scaling architectures we have in production.  Those kinds of bugs and issues are really difficult to reproduce on a local dev box.  It also prevents the "it worked on my machine" issue, as we make sure that staging and production have identical configurations, etc.

So for both staging and production, it's a single command line task to update the app from a specific svn revision.  This approach helps us immensely, and on a personal level, I hate to ever do something twice, so it makes me much less worried about that.</description>
		<content:encoded><![CDATA[<p>We do a lot of shell scripting/make to make our deployments easy.</p>
<p>For example, we have a script that will autodeploy a new svn/trac server instance, add default users and permissions, etc., as a single command line task.</p>
<p>We make extensive use of our staging environment for testing.  But rather than pushing from staging to production, staging gives us a place to test with large fake data sets, but in an environment with the same replication/scaling architectures we have in production.  Those kinds of bugs and issues are really difficult to reproduce on a local dev box.  It also prevents the &#8220;it worked on my machine&#8221; issue, as we make sure that staging and production have identical configurations, etc.</p>
<p>So for both staging and production, it&#8217;s a single command line task to update the app from a specific svn revision.  This approach helps us immensely, and on a personal level, I hate to ever do something twice, so it makes me much less worried about that.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: RedVodkaJelly.com - Quick Iteration</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-233</link>
		<pubDate>Sun, 17 Dec 2006 01:13:28 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-233</guid>
					<description>[...] Ryan Carson also recently wrote a post about planning your software and deployment process at the start of projects so that you can quickly and effortlessly launch changes without all the messing about normally involved in launching or updating a web site or application. I follow the majority of the points that Ryan lists, but could really do with adding the final touched so that any deployments can be done with relativity minimum effort. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Ryan Carson also recently wrote a post about planning your software and deployment process at the start of projects so that you can quickly and effortlessly launch changes without all the messing about normally involved in launching or updating a web site or application. I follow the majority of the points that Ryan lists, but could really do with adding the final touched so that any deployments can be done with relativity minimum effort. [&#8230;]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Robert</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-228</link>
		<pubDate>Fri, 15 Dec 2006 06:27:49 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-228</guid>
					<description>Ryan: Unfortunately, you are/were using PHP for this app. ;)

Using tools like svn allows for growing and versioning of your work, so you have to use it - in opinion. So, to take the pain out, I'd write a shell script for the basic setup of your svn. That way all you have to do is run a file, pass some parameters, and sit back a let it do it for you. (assuming you are doing your svn at the prompt)

I don't think enough attention is given to DRYing up the setup process of development. I get tired of doing some of the same basic tasks to get my development environment/app setup. So, I've been writing shell scripts to help out with this process so I write once and then just run the program there on after.

Development servers are simply a subdomain for me that are deployed by a capistrano recipe pulling from svn. When production comes, I deploy to the production server leaving the development server running because we are usually not stopping at versions 1.0, but continue to develop the application.

I don't use any one-click development tools. As I said, I use a lot of shell scripting these days to take the pain out and DRY up the process. 

I'll be having an article going up on the 18th over at the "Ruby Advent Calendar":http://www.rubyinside.com/advent2006/ that talks about a script I wrote for doing all my setup for an edge rails application. 

Any questions about this, just shoot me an email, I'd be happy to help out.</description>
		<content:encoded><![CDATA[<p>Ryan: Unfortunately, you are/were using PHP for this app. ;)</p>
<p>Using tools like svn allows for growing and versioning of your work, so you have to use it - in opinion. So, to take the pain out, I&#8217;d write a shell script for the basic setup of your svn. That way all you have to do is run a file, pass some parameters, and sit back a let it do it for you. (assuming you are doing your svn at the prompt)</p>
<p>I don&#8217;t think enough attention is given to DRYing up the setup process of development. I get tired of doing some of the same basic tasks to get my development environment/app setup. So, I&#8217;ve been writing shell scripts to help out with this process so I write once and then just run the program there on after.</p>
<p>Development servers are simply a subdomain for me that are deployed by a capistrano recipe pulling from svn. When production comes, I deploy to the production server leaving the development server running because we are usually not stopping at versions 1.0, but continue to develop the application.</p>
<p>I don&#8217;t use any one-click development tools. As I said, I use a lot of shell scripting these days to take the pain out and DRY up the process. </p>
<p>I&#8217;ll be having an article going up on the 18th over at the &#8220;Ruby Advent Calendar&#8221;:http://www.rubyinside.com/advent2006/ that talks about a script I wrote for doing all my setup for an edge rails application. </p>
<p>Any questions about this, just shoot me an email, I&#8217;d be happy to help out.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: cedsav</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-217</link>
		<pubDate>Wed, 13 Dec 2006 23:59:01 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-217</guid>
					<description>I personally don't like the idea of a one-click deployment. It makes it too easy to push an update without thinking and testing it through. I guess it's less of a problem for a web site though (as opposed to a web app).</description>
		<content:encoded><![CDATA[<p>I personally don&#8217;t like the idea of a one-click deployment. It makes it too easy to push an update without thinking and testing it through. I guess it&#8217;s less of a problem for a web site though (as opposed to a web app).
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Bill</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-215</link>
		<pubDate>Wed, 13 Dec 2006 23:06:07 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-215</guid>
					<description>So how's it going with selling DropSend? No news on your blog for a while.</description>
		<content:encoded><![CDATA[<p>So how&#8217;s it going with selling DropSend? No news on your blog for a while.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Michele</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-214</link>
		<pubDate>Wed, 13 Dec 2006 19:20:35 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-214</guid>
					<description>Using Rails make it very luring to use SVN, because then you can enjoy the greatness of Capistrano. That's one of the reasons why we're using SVN on both of our apps.

I'm not sure, but I think you can use Capistrano even if you're developing in PHP. You might want to have a look at it.</description>
		<content:encoded><![CDATA[<p>Using Rails make it very luring to use SVN, because then you can enjoy the greatness of Capistrano. That&#8217;s one of the reasons why we&#8217;re using SVN on both of our apps.</p>
<p>I&#8217;m not sure, but I think you can use Capistrano even if you&#8217;re developing in PHP. You might want to have a look at it.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Curt Sampson</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-213</link>
		<pubDate>Wed, 13 Dec 2006 18:14:11 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-213</guid>
					<description>I find this news rather cheerful, in a bizarre way; it's nice to see that someone else out there has the same problems we have, and may actually find useful some of the tools that we (at Starling Software) have built over the last year or two. This will encourage me to put something together and release it.

We've got a standard directory structure and system, using Subversion for version control, for quickly building, testing and deploying websites. The only tool we're really tied to at the moment is Subversion (though we originally started on CVS), since our import tools are heavily dependent on it. (These are tools to do things such as "bring http://foo.net/release/foo-1.3.2.tar.gz into the vendor area of the repository," and then "bring foo into the external source s for project X".) Other than that, the system is reasonably agnostic; you pick your web server (we use Apache or lighttpd), your languages (we use Ruby, sometimes our clients make us use PHP), the particular versions of libraries you need, and then make your own dirs for whatever datatabase schemas, libraries and applications you're building. It's designed around a full automated install and test framework, which allows you to bring up a server on any machine quite quickly, whether it be a personal development, demo, staging or production server. One particularly nice thing is that, if you have dependencies outside of the source tree, doing a checkout and test on a new host will very quickly tell you what you need to install there for the app to work. (Though mostly we try to keep dependencies in the tree--we almost invariably use an in-tree web server, database driver, and so on.)

Typically, given a new web project, we have the a production server up and running by the end of the first day. It's inevitably simple--perhaps just a single page serving a few interesting titbits from the database--but it's there, and from that point onward it's just a matter of spending a few minutes to release a new feature after someone codes and commits it.

What we've just recently got working well is the tool sharing system, so that when we add a feature to a framework tool in one project, we can bring it back into "framework central," and then in other projects easily pull in those new features. Without some automated help with this kind of chore, we'd never have all of our projects keeping up reasonably well with the framework. It's invaluable for allowing your framework to evolve fairly rapidly.

I ought to write a paper on this one day.</description>
		<content:encoded><![CDATA[<p>I find this news rather cheerful, in a bizarre way; it&#8217;s nice to see that someone else out there has the same problems we have, and may actually find useful some of the tools that we (at Starling Software) have built over the last year or two. This will encourage me to put something together and release it.</p>
<p>We&#8217;ve got a standard directory structure and system, using Subversion for version control, for quickly building, testing and deploying websites. The only tool we&#8217;re really tied to at the moment is Subversion (though we originally started on CVS), since our import tools are heavily dependent on it. (These are tools to do things such as &#8220;bring <a href="http://foo.net/release/foo-1.3.2.tar.gz" rel="nofollow">http://foo.net/release/foo-1.3.2.tar.gz</a> into the vendor area of the repository,&#8221; and then &#8220;bring foo into the external source s for project X&#8221;.) Other than that, the system is reasonably agnostic; you pick your web server (we use Apache or lighttpd), your languages (we use Ruby, sometimes our clients make us use PHP), the particular versions of libraries you need, and then make your own dirs for whatever datatabase schemas, libraries and applications you&#8217;re building. It&#8217;s designed around a full automated install and test framework, which allows you to bring up a server on any machine quite quickly, whether it be a personal development, demo, staging or production server. One particularly nice thing is that, if you have dependencies outside of the source tree, doing a checkout and test on a new host will very quickly tell you what you need to install there for the app to work. (Though mostly we try to keep dependencies in the tree&#8211;we almost invariably use an in-tree web server, database driver, and so on.)</p>
<p>Typically, given a new web project, we have the a production server up and running by the end of the first day. It&#8217;s inevitably simple&#8211;perhaps just a single page serving a few interesting titbits from the database&#8211;but it&#8217;s there, and from that point onward it&#8217;s just a matter of spending a few minutes to release a new feature after someone codes and commits it.</p>
<p>What we&#8217;ve just recently got working well is the tool sharing system, so that when we add a feature to a framework tool in one project, we can bring it back into &#8220;framework central,&#8221; and then in other projects easily pull in those new features. Without some automated help with this kind of chore, we&#8217;d never have all of our projects keeping up reasonably well with the framework. It&#8217;s invaluable for allowing your framework to evolve fairly rapidly.</p>
<p>I ought to write a paper on this one day.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Ryan Carson</title>
		<link>http://www.carsonified.com/biz-tips/plan-to-grow#comment-212</link>
		<pubDate>Wed, 13 Dec 2006 17:14:43 +0000</pubDate>
		<guid>http://www.carsonified.com/biz-tips/plan-to-grow#comment-212</guid>
					<description>&lt;blockquote&gt;I’ve been using Bazaar NG instead of Subversion for personal projects recently&lt;/blockquote&gt;

Nice tip Simon - cheers.</description>
		<content:encoded><![CDATA[<blockquote><p>I’ve been using Bazaar NG instead of Subversion for personal projects recently</p></blockquote>
<p>Nice tip Simon - cheers.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
