Using flask to build web task management
Author : Shaun Wei
Email : shaunweix@gmail.com
Current Version: v4.0
Change log :
v4.0 : use flask - blueprint to manage file system
use bootstrap as front-end
deploy on Heroku
http://flask-taskr.herokuapp.com/
v3.0 : user sign up page added
user information added in sqlite
file system remodel
error handler pages added(404, 500)
unittest & error log added
v2.0 : change db control from sqlite3 to sqlalchemy
use wtform to control input data
v1.0 : use basic flask knowledge to bulid website
Dev log :
merge blog page
add social media API
make website nice :) #using jQ & jS
Test:
requirements.txt: Flask==0.10.1
Flask-SQLAlchemy==1.0
Flask-WTF==0.9.0
Jinja2==2.7.1
MarkupSafe==0.18
SQLAlchemy==0.8.2
WTForms==1.0.4
Werkzeug==0.9.3
nose==1.3.0
python environment: python 2.7.5
$ python run.py #your page will be on : 127.0.0.1:4000
Thanks : Realpython Thanks for the amazing tutorial!