summaryrefslogtreecommitdiff
path: root/parts/django/docs/howto/deployment/index.txt
diff options
context:
space:
mode:
Diffstat (limited to 'parts/django/docs/howto/deployment/index.txt')
-rw-r--r--parts/django/docs/howto/deployment/index.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/parts/django/docs/howto/deployment/index.txt b/parts/django/docs/howto/deployment/index.txt
new file mode 100644
index 0000000..740f9bc
--- /dev/null
+++ b/parts/django/docs/howto/deployment/index.txt
@@ -0,0 +1,25 @@
+Deploying Django
+================
+
+Django's chock-full of shortcuts to make Web developer's lives easier, but all
+those tools are of no use if you can't easily deploy your sites. Since Django's
+inception, ease of deployment has been a major goal. There's a number of good
+ways to easily deploy Django:
+
+.. toctree::
+ :maxdepth: 1
+
+ modwsgi
+ modpython
+ fastcgi
+
+If you're new to deploying Django and/or Python, we'd recommend you try
+:doc:`mod_wsgi </howto/deployment/modwsgi>` first. In most cases it'll be the easiest,
+fastest, and most stable deployment choice.
+
+.. seealso::
+
+ * `Chapter 12 of The Django Book`_ discusses deployment and especially
+ scaling in more detail.
+
+.. _chapter 12 of the django book: http://djangobook.com/en/2.0/chapter12/