                         / Flaskr /

                 a minimal blog application


    ~ What is Flaskr?

      A sqlite powered thumble blog application

    ~ How do I use it?

      1. Install the required libraries, preferably using pip and virtualenv:
	i. Download `pip` and `virtualenv`
	    $ sudo easy_install pip
	    $ sudo pip install virtualenv
	ii. Create an isolated environment with `virtualenv`:
	    $ virtualenv --no-site-packages env
	    $ source env/bin/activate
	iii. Install dependencies with `pip`:
	    $ pip install -r requirements.txt

      2. fire up a python shell and run the flaskr.py file
         with your python interpreter and the application will
         greet you on http://localhost:5000/
	$ python flaskr.py 
	
    ~ Is it tested?

      You betcha.  Run the `flaskr_tests.py` file to see
      the tests pass.
