forked from orbit-oss/flask
* Converts example/flaskr to have a setup.py Makes the flaskr app easier to run, ex. workflow: - pip install --editable . - export FLASK_APP=flaskr.flaskr - flask initdb - flask run Testing is also easier now: - python setup.py test * Fixed an import error in flaskr/tests - the statement `import flaskr` caused errors in python3 - `from . import flaskr` fixes the issue in 2.7.11 and 3.5.1 * Better project structure and updates the docs - Re-factors *flaskr*'s project structure a bit - Updates docs to make sense with the new structure - Adds a new step about installing Flask apps with setuptools - Switches first-person style writing to second-person (reads better IMO) - Adds segments in *testing.rst* for running tests with setuptools * Remove __init__.py from tests - py.test recommends not using __init__.py * Fix testing import errors
33 lines
817 B
ReStructuredText
33 lines
817 B
ReStructuredText
.. _tutorial:
|
|
|
|
Tutorial
|
|
========
|
|
|
|
You want to develop an application with Python and Flask? Here you have
|
|
the chance to learn by example. In this tutorial, we will create a simple
|
|
microblogging 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 a database (which comes out of the box with Python) so there is nothing
|
|
else you need.
|
|
|
|
If you want the full source code in advance or for comparison, check out
|
|
the `example source`_.
|
|
|
|
.. _example source:
|
|
https://github.com/pallets/flask/tree/master/examples/flaskr/
|
|
|
|
.. toctree::
|
|
:maxdepth: 2
|
|
|
|
introduction
|
|
folders
|
|
schema
|
|
setup
|
|
setuptools
|
|
dbcon
|
|
dbinit
|
|
views
|
|
templates
|
|
css
|
|
testing
|