Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/app/static/doc/flask-docs/_sources/tutorial/index.txt
diff options
context:
space:
mode:
Diffstat (limited to 'app/static/doc/flask-docs/_sources/tutorial/index.txt')
-rw-r--r--app/static/doc/flask-docs/_sources/tutorial/index.txt32
1 files changed, 0 insertions, 32 deletions
diff --git a/app/static/doc/flask-docs/_sources/tutorial/index.txt b/app/static/doc/flask-docs/_sources/tutorial/index.txt
deleted file mode 100644
index 3f2d659..0000000
--- a/app/static/doc/flask-docs/_sources/tutorial/index.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-.. _tutorial:
-
-Tutorial
-========
-
-You want to develop an application with Python and Flask? Here you have
-the chance to learn that by example. In this tutorial we will create a
-simple microblog application. It only supports one user that can create
-text-only entries and there are no feeds or comments, but it still
-features everything you need to get started. We will use Flask and SQLite
-as database which comes out of the box with Python, so there is nothing
-else you need.
-
-If you want the full sourcecode in advance or for comparison, check out
-the `example source`_.
-
-.. _example source:
- http://github.com/mitsuhiko/flask/tree/master/examples/flaskr/
-
-.. toctree::
- :maxdepth: 2
-
- introduction
- folders
- schema
- setup
- dbinit
- dbcon
- views
- templates
- css
- testing