<?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: Poor Man&#8217;s Heroku Backups</title>
	<atom:link href="http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/feed/" rel="self" type="application/rss+xml" />
	<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/</link>
	<description></description>
	<lastBuildDate>Wed, 08 Sep 2010 15:38:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Matt Buck</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-69464</link>
		<dc:creator>Matt Buck</dc:creator>
		<pubDate>Fri, 26 Mar 2010 21:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-69464</guid>
		<description>Thanks! Yeah, I found that one recently, as well.  I think I like his method better, actually.  I adapted my plugin from a rake task, so it&#039;s still shelling out to the heroku gem.  I&#039;m just using the bundle capture functionality rather than pg_dump direct from the dyno.</description>
		<content:encoded><![CDATA[<p>Thanks! Yeah, I found that one recently, as well.  I think I like his method better, actually.  I adapted my plugin from a rake task, so it&#8217;s still shelling out to the heroku gem.  I&#8217;m just using the bundle capture functionality rather than pg_dump direct from the dyno.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-69463</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Fri, 26 Mar 2010 03:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-69463</guid>
		<description>@Matt - cool!

I also came across this one, which looks pretty good, too:

http://github.com/perezd/heroku_tools</description>
		<content:encoded><![CDATA[<p>@Matt &#8211; cool!</p>
<p>I also came across this one, which looks pretty good, too:</p>
<p><a href="http://github.com/perezd/heroku_tools" rel="nofollow">http://github.com/perezd/heroku_tools</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Buck</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-69462</link>
		<dc:creator>Matt Buck</dc:creator>
		<pubDate>Thu, 25 Mar 2010 21:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-69462</guid>
		<description>I recently created a heroku plugin for the purpose of automating the uploading of bundles to S3: http://herocutter.heroku.com/plugins/17</description>
		<content:encoded><![CDATA[<p>I recently created a heroku plugin for the purpose of automating the uploading of bundles to S3: <a href="http://herocutter.heroku.com/plugins/17" rel="nofollow">http://herocutter.heroku.com/plugins/17</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leo Wong</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-69261</link>
		<dc:creator>Leo Wong</dc:creator>
		<pubDate>Wed, 02 Dec 2009 14:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-69261</guid>
		<description>Thanks for the helpful advices. It seems capturing a bundle is a more preferred way for backups. But I have a question: how to restore the raw dump file &#039;pgdump.sql&#039;, which is included in the downloaded bundle, to the database on Heroku?</description>
		<content:encoded><![CDATA[<p>Thanks for the helpful advices. It seems capturing a bundle is a more preferred way for backups. But I have a question: how to restore the raw dump file &#8216;pgdump.sql&#8217;, which is included in the downloaded bundle, to the database on Heroku?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-69051</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Fri, 09 Oct 2009 23:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-69051</guid>
		<description>That was easy. Thanks, Sam!</description>
		<content:encoded><![CDATA[<p>That was easy. Thanks, Sam!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Rodgers</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-69050</link>
		<dc:creator>Sam Rodgers</dc:creator>
		<pubDate>Fri, 09 Oct 2009 17:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-69050</guid>
		<description>bundle=backup
app=myapp
heroku bundles:capture  $bundle --app $app
sleep 15 # the capture takes a few seconds...
heroku bundles:download $bundle --app $app
heroku bundles:destroy  $bundle --app $app</description>
		<content:encoded><![CDATA[<p>bundle=backup<br />
app=myapp<br />
heroku bundles:capture  $bundle &#8211;app $app<br />
sleep 15 # the capture takes a few seconds&#8230;<br />
heroku bundles:download $bundle &#8211;app $app<br />
heroku bundles:destroy  $bundle &#8211;app $app</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-68996</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Mon, 14 Sep 2009 19:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-68996</guid>
		<description>Yeah, that could be easier, but I couldn&#039;t figure out how to automate the destroying of that single bundle to make room for the new one. If this isn&#039;t a problem anymore, or you have a solution, please let me know!</description>
		<content:encoded><![CDATA[<p>Yeah, that could be easier, but I couldn&#8217;t figure out how to automate the destroying of that single bundle to make room for the new one. If this isn&#8217;t a problem anymore, or you have a solution, please let me know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mooktakim</title>
		<link>http://trevorturk.com/2009/09/11/poor-mans-heroku-backups/#comment-68994</link>
		<dc:creator>Mooktakim</dc:creator>
		<pubDate>Mon, 14 Sep 2009 14:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://almosteffortless.com/?p=1645#comment-68994</guid>
		<description>You get 1 backup free.

$ heroku bundles:capture
$ heroku bundles:download

Keep it someplace</description>
		<content:encoded><![CDATA[<p>You get 1 backup free.</p>
<p>$ heroku bundles:capture<br />
$ heroku bundles:download</p>
<p>Keep it someplace</p>
]]></content:encoded>
	</item>
</channel>
</rss>
