Skip to content

Commit 062f141

Browse files
committed
moving deploying django into its own section since it didnt fit with the intro
1 parent c87dae1 commit 062f141

File tree

6 files changed

+10
-13
lines changed

6 files changed

+10
-13
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-02-12T07:50:18Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-02-12T14:10:33Z</updated></feed>

index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,6 @@ <h1>Introduction</h1>
9090
<a class="reference external" href="http://docs.python-guide.org/en/latest/">The Hitchhiker’s Guide to Python</a>.</li>
9191
<li>To get an introduction to both Python and Django at the same time, read
9292
<a class="reference external" href="http://www.realpython.com/">Real Python</a> by Fletcher, Michael, and Jeremy.</li>
93-
<li>To deploy a Python web application to the Heroku platform-as-a-service
94-
(described below in this guide), check out
95-
<a class="reference external" href="http://www.deploydjango.com/">Deploying Django</a> by Randall Degges.</li>
9693
<li>If you're not coming in with any software development background,
9794
you may find my post on
9895
<a class="reference external" href="http://www.mattmakai.com/learning-python-for-non-developers.html">Learning Python</a>

introduction.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,6 @@ <h1>Introduction</h1>
9090
<a class="reference external" href="http://docs.python-guide.org/en/latest/">The Hitchhiker’s Guide to Python</a>.</li>
9191
<li>To get an introduction to both Python and Django at the same time, read
9292
<a class="reference external" href="http://www.realpython.com/">Real Python</a> by Fletcher, Michael, and Jeremy.</li>
93-
<li>To deploy a Python web application to the Heroku platform-as-a-service
94-
(described below in this guide), check out
95-
<a class="reference external" href="http://www.deploydjango.com/">Deploying Django</a> by Randall Degges.</li>
9693
<li>If you're not coming in with any software development background,
9794
you may find my post on
9895
<a class="reference external" href="http://www.mattmakai.com/learning-python-for-non-developers.html">Learning Python</a>

platform-as-a-service.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,16 @@ <h1>Platform-as-a-service</h1>
9999
generally start at the WSGI server layer.</p>
100100
<div class="section" id="platform-as-a-service-resources">
101101
<h2>Platform-as-a-service resources</h2>
102+
<p><a class="reference external" href="http://appsembler.com/blog/paas-bakeoff-comparing-stackato-openshift-dotcloud-and-heroku-for-django-hosting-and-deployment/">PaaS bakeoff: Comparing Stackato, OpenShift, Dotcloud and Heroku for Django hosting and deployment</a> by <a class="reference external" href="https://twitter.com/natea">Nate Aune</a></p>
102103
<p>DevOps Django and Heroku Series by <a class="reference external" href="https://twitter.com/rdegges">Randall Degges</a>:</p>
103104
<ul class="simple">
104105
<li><a class="reference external" href="http://www.rdegges.com/devops-django-part-1-goals/">Part One: Goals</a></li>
105106
<li><a class="reference external" href="http://www.rdegges.com/devops-django-part-2-the-pain-of-deployment/">Part Two: The Pain of Deployment</a></li>
106107
<li><a class="reference external" href="http://www.rdegges.com/devops-django-part-3-the-heroku-way/">Part Three: The Heroku Way</a></li>
107108
<li><a class="reference external" href="http://rdegges.com/devops-django-part-4-choosing-heroku">Part Four: Choosing Heroku</a></li>
108109
</ul>
109-
<p><a class="reference external" href="http://appsembler.com/blog/paas-bakeoff-comparing-stackato-openshift-dotcloud-and-heroku-for-django-hosting-and-deployment/">PaaS bakeoff: Comparing Stackato, OpenShift, Dotcloud and Heroku for Django hosting and deployment</a> by <a class="reference external" href="https://twitter.com/natea">Nate Aune</a></p>
110+
<p><a class="reference external" href="http://www.deploydjango.com/">Deploying Django</a> by Randall Degges is
111+
another great free resource about Heroku.</p>
110112
</div>
111113

112114
<br/>

source/content/pages/introduction.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ fantastic Python guides that you can read first:
2424
* To get an introduction to both Python and Django at the same time, read
2525
`Real Python <http://www.realpython.com/>`_ by Fletcher, Michael, and Jeremy.
2626

27-
* To deploy a Python web application to the Heroku platform-as-a-service
28-
(described below in this guide), check out
29-
`Deploying Django <http://www.deploydjango.com/>`_ by Randall Degges.
30-
3127
* If you're not coming in with any software development background,
3228
you may find my post on
3329
`Learning Python <http://www.mattmakai.com/learning-python-for-non-developers.html>`_

source/content/pages/platform-as-a-service.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ generally start at the WSGI server layer.
4242

4343
Platform-as-a-service resources
4444
===============================
45+
`PaaS bakeoff: Comparing Stackato, OpenShift, Dotcloud and Heroku for Django hosting and deployment <http://appsembler.com/blog/paas-bakeoff-comparing-stackato-openshift-dotcloud-and-heroku-for-django-hosting-and-deployment/>`_ by `Nate Aune <https://twitter.com/natea>`_
46+
4547
DevOps Django and Heroku Series by `Randall Degges <https://twitter.com/rdegges>`_:
4648

4749
* `Part One: Goals <http://www.rdegges.com/devops-django-part-1-goals/>`_
@@ -52,5 +54,8 @@ DevOps Django and Heroku Series by `Randall Degges <https://twitter.com/rdegges>
5254

5355
* `Part Four: Choosing Heroku <http://rdegges.com/devops-django-part-4-choosing-heroku>`_
5456

55-
`PaaS bakeoff: Comparing Stackato, OpenShift, Dotcloud and Heroku for Django hosting and deployment <http://appsembler.com/blog/paas-bakeoff-comparing-stackato-openshift-dotcloud-and-heroku-for-django-hosting-and-deployment/>`_ by `Nate Aune <https://twitter.com/natea>`_
57+
`Deploying Django <http://www.deploydjango.com/>`_ by Randall Degges is
58+
another great free resource about Heroku.
59+
60+
5661

0 commit comments

Comments
 (0)