Go to file
David Lord c3a997864e
Merge pull request #2593 from pallets/env-docs
clean up FLASK_ENV docs
2018-01-10 15:46:42 -08:00
.github Rename GitHub templates to md. They are Markdown. 2017-12-02 09:17:18 +01:00
artwork Added lineart logo 2015-10-01 13:58:48 +02:00
docs clean up FLASK_ENV docs [ci skip] 2018-01-10 15:46:11 -08:00
examples fix windows failure to remove temp file 2018-01-05 12:36:01 -08:00
flask clean up FLASK_ENV docs [ci skip] 2018-01-10 15:46:11 -08:00
scripts remove old upgrade script 2017-06-26 09:22:03 -07:00
tests reset standard os env after each test 2018-01-10 13:53:45 -08:00
.appveyor.yml cleanup 2018-01-04 07:29:15 -08:00
.coveragerc reduce number of tox and travis envs 2017-05-24 15:41:35 -07:00
.gitattributes Set merge strategy for CHANGES 2016-09-12 21:55:17 +03:00
.gitignore load env vars using python-dotenv 2017-07-16 13:37:51 -07:00
.travis.yml remove tests and docs for python 2.6 and 3.3 2017-12-16 07:00:00 -08:00
AUTHORS Remove python 2.6 and 3.3 everywhere. (#2583) 2018-01-06 10:49:50 +01:00
CHANGES silence ENOTDIR when loading config file 2018-01-05 07:40:51 -08:00
CONTRIBUTING.rst Remove python 2.6 and 3.3 everywhere. (#2583) 2018-01-06 10:49:50 +01:00
LICENSE Happy New Year 2015 2015-01-02 11:35:00 +09:00
MANIFEST.in include tox.ini in sdist 2017-11-26 12:50:36 -08:00
Makefile update development resources 2017-05-28 10:26:07 -07:00
README py.test => pytest (#2173) 2017-02-09 18:34:16 +01:00
setup.cfg reduce number of tox and travis envs 2017-05-24 15:41:35 -07:00
setup.py Remove python 2.6 and 3.3 everywhere. (#2583) 2018-01-06 10:49:50 +01:00
test-requirements.txt Merge branch 'master' into makecov 2017-05-22 14:14:40 -07:00
tox.ini Merge pull request #2541 from nsiregar/#2535_update_pycharm_instruction 2018-01-04 12:56:38 -08:00

README


                          // Flask //

              web development, one drop at a time


    ~ What is Flask?

      Flask is a microframework for Python based on Werkzeug
      and Jinja2.  It's intended for getting started very quickly
      and was developed with best intentions in mind.

    ~ Is it ready?

      It's still not 1.0 but it's shaping up nicely and is
      already widely used.  Consider the API to slightly
      improve over time but we don't plan on breaking it.

    ~ What do I need?

      All dependencies are installed by using `pip install Flask`.
      We encourage you to use a virtualenv. Check the docs for
      complete installation and usage instructions.

    ~ Where are the docs?

      Go to http://flask.pocoo.org/docs/ for a prebuilt version
      of the current documentation.  Otherwise build them yourself
      from the sphinx sources in the docs folder.

    ~ Where are the tests?

      Good that you're asking.  The tests are in the
      tests/ folder.  To run the tests use the
      `pytest` testing tool:

        $ pytest

      Details on contributing can be found in CONTRIBUTING.rst

    ~ Where can I get help?

      Either use the #pocoo IRC channel on irc.freenode.net or
      ask on the mailinglist: http://flask.pocoo.org/mailinglist/

      See http://flask.pocoo.org/community/ for more resources.