linux-conf-au-flask-tute icon indicating copy to clipboard operation
linux-conf-au-flask-tute copied to clipboard

Flask Tutorial given at linux.conf.au 2014

trafficstars

Writing your first web app using Python and Flask

Getting Started

Clone this repo!

git clone git://github.com/danni/linux-conf-au-flask-tute

Create a local Python environment, this allows you to choose exactly what is and isn't included, and what version, in the Python stack for your application.

virtualenv python_env
. python_env/bin/activate

Install Flask

pip install -r requirements.txt