forked from rdegges/django-skel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a new docs section: Running on Heroku.
- Loading branch information
1 parent
4481464
commit 794fcc8
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,7 @@ Follow the Guide Below to Victory! | |
getting-started | ||
layout | ||
developing | ||
running-on-heroku | ||
|
||
|
||
Also... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Running on Heroku | ||
================= | ||
|
||
Normally, deploying a Django site would make you want to flip your desk: | ||
|
||
.. image:: _static/flip.png | ||
|
||
Luckily for us, `Heroku <http://www.heroku.com/>`_ has made the process a | ||
complete joy! If you're aren't familiar with Heroku--they are the **best** | ||
web host, and you will love them if you don't already. | ||
|
||
``django-skel`` ships with a production ready Heroku configuration module, and | ||
this section will walk you through creating your Heroku app, and getting your | ||
site running in production. | ||
|
||
While this section is quite long, don't be intimidated! It's only long because | ||
I'm explaining everything along the way--the reality of it is that deploying | ||
your site this way really only consists of a couple commands. | ||
|
||
If you'd like to read some official documentation on the topic, check out | ||
`Heroku's Django documentation <https://devcenter.heroku.com/articles/django>`_. |