Go to file
Miguel Grinberg 912c6f7b57 display dates and times with moment.js 2012-12-31 19:05:14 -08:00
app display dates and times with moment.js 2012-12-31 19:05:14 -08:00
db_repository followers 2012-12-16 21:41:49 -08:00
tmp hello world 2012-12-16 21:41:25 -08:00
.gitignore added .gitignore file 2012-12-31 12:06:52 -08:00
LICENSE hello world 2012-12-16 21:41:25 -08:00
README.md initial commit 2012-12-16 00:17:46 -08:00
config.py email support 2012-12-16 21:41:50 -08:00
db_create.py database 2012-12-16 21:41:47 -08:00
db_downgrade.py database 2012-12-16 21:41:47 -08:00
db_migrate.py database 2012-12-16 21:41:47 -08:00
db_upgrade.py database 2012-12-16 21:41:47 -08:00
run.py hello world 2012-12-16 21:41:25 -08:00
runp.py unit testing framework 2012-12-16 21:41:48 -08:00
setup.py fixed sqlalchemy version at 0.7.9 since sqlalchemy-migrate does not yet work with 0.8 2012-12-31 11:52:43 -08:00
tests.py followers 2012-12-16 21:41:49 -08:00
virtualenv.py hello world 2012-12-16 21:41:25 -08:00

README.md

microblog

A decently featured microblogging web application written in Python and Flask that I'm developing in my Flask Mega-Tutorial series that begins here.

Installation

The tutorial referenced above explains how to setup a virtual environment with all the required modules. As a convenience, the setup.py script will create this virtual environment for you. You can run this script again to refresh any missing modules.

The sqlite database must also be created before the application can run, and the db_create.py script takes care of that. See the Database tutorial for the details.

Running

To run the application in the development web server just execute run.py with the Python interpreter from the flask virtual environment.