<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Leo Lutz &#187; CakePHP</title>
	<atom:link href="http://leolutz.com/blog/category/cakephp/feed/" rel="self" type="application/rss+xml" />
	<link>http://leolutz.com</link>
	<description>Your Web Guru</description>
	<lastBuildDate>Thu, 14 May 2009 22:58:28 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Uploading an existing project to Chaw using git</title>
		<link>http://leolutz.com/blog/2009/01/05/uploading-an-existing-project-to-chaw-using-git/</link>
		<comments>http://leolutz.com/blog/2009/01/05/uploading-an-existing-project-to-chaw-using-git/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 03:20:38 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[CakePHP]]></category>

		<guid isPermaLink="false">http://leolutz.com/?p=11</guid>
		<description><![CDATA[This is for users of thechaw.com. It is a project repository for CakePHP projects.
Change directory to your application’s working path. This will be inside of your “app” directory.
example:
cd /htdocs/app
Setup git locally.
git init
Add link to the remote repository.
git remote add upstream git@thechaw.com:projectname.git
Edit .gitignore to include the following:
tmp
tmp/*
config/database.php
*Note for Mac users, it is advantageous to also add [...]]]></description>
			<content:encoded><![CDATA[<p>This is for users of <a title="Chaw" href="http://thechaw.com" target="_blank">thechaw.com</a>. It is a project repository for <a title="CakePHP" href="http://cakephp.org" target="_blank">CakePHP</a> projects.</p>
<p>Change directory to your application’s working path. This will be inside of your “app” directory.<br />
example:<br />
<code>cd /htdocs/app</code></p>
<p>Setup git locally.<br />
<code>git init</code></p>
<p>Add link to the remote repository.<br />
<code>git remote add upstream git@thechaw.com:projectname.git</code></p>
<p>Edit .gitignore to include the following:<br />
<code>tmp<br />
tmp/*<br />
config/database.php</code></p>
<p>*Note for Mac users, it is advantageous to also add .DS_Store</p>
<p>(Optional)<br />
This is HIGHLY recommended. This prints out a list of files that would be added, so you can make sure there aren’t extra libraries or other files<br />
<code>git add . --dry-run</code></p>
<p>Add files to commit.<br />
<code>git add .</code></p>
<p>Commit files.<br />
<code>git commit -m "Initial commit of project files"<br />
</code></p>
<p>Upload to the repository.<br />
<code>git pull upstream master<br />
git push upstream master</code></p>
]]></content:encoded>
			<wfw:commentRss>http://leolutz.com/blog/2009/01/05/uploading-an-existing-project-to-chaw-using-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating CakePHP API for local use on OS X</title>
		<link>http://leolutz.com/blog/2009/01/05/generating-cakephp-api-for-local-use-on-os-x/</link>
		<comments>http://leolutz.com/blog/2009/01/05/generating-cakephp-api-for-local-use-on-os-x/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 02:36:36 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[CakePHP]]></category>

		<guid isPermaLink="false">http://leolutz.com/?p=5</guid>
		<description><![CDATA[1) Download the Mac disk image of Doxygen and install the application.
2) Download my Doxygen config file. Adapted from Ticket #5910.
3) Create a directory in your app/webroot/ named api.
4) Open Doxygen and open the config file.
5) Double check that Source code directory and Destination directory are correct for your setup.
6) Switch to the Run tab [...]]]></description>
			<content:encoded><![CDATA[<p>1) Download the Mac disk image of <a title="Doxygen Download" href="http://www.stack.nl/~dimitri/doxygen/download.html#latestsrc" target="_blank">Doxygen</a> and install the application.</p>
<p>2) Download my Doxygen <a title="CakePHP local Doxygen config" href="http://leolutz.com/miscfiles/CakePHP%20Local%20Doxyfile" target="_blank">config file</a>. Adapted from <a title="CakePHP Trac Ticket #5910" href="https://trac.cakephp.org/ticket/5910" target="_blank">Ticket #5910</a>.</p>
<p>3) Create a directory in your app/webroot/ named <em>api</em>.</p>
<p>4) Open Doxygen and open the config file.</p>
<p>5) Double check that <em>Source code directory</em> and <em>Destination directory</em> are correct for your setup.</p>
<p>6) Switch to the <em>Run</em> tab and hit run.</p>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://leolutz.com/blog/2009/01/05/generating-cakephp-api-for-local-use-on-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
