diff options
author | Priit Laes <plaes@plaes.org> | 2010-07-07 14:22:28 +0300 |
---|---|---|
committer | Priit Laes <plaes@plaes.org> | 2010-07-07 15:28:35 +0300 |
commit | ba971b43604fcc2810acf5edfbf8a89ec2ceb540 (patch) | |
tree | 7a0731adcacf87441f2c2894bfa27f2f2c7e9e11 /README | |
parent | Added Flask-based web app with Flask-SQLAlchemy dependency (diff) | |
download | gsoc2010-grumpy-ba971b43604fcc2810acf5edfbf8a89ec2ceb540.tar.gz gsoc2010-grumpy-ba971b43604fcc2810acf5edfbf8a89ec2ceb540.tar.bz2 gsoc2010-grumpy-ba971b43604fcc2810acf5edfbf8a89ec2ceb540.zip |
List Flask and Flask-SQLAlchemy as dependencies, update installation docs
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -11,6 +11,8 @@ Requirements - Python-2.5+ - pkgcore - SQLAlchemy-0.6 + - Flask + - Flask-SQLAlchemy Database support ---------------- @@ -37,8 +39,8 @@ To setup the app, you need to populate database with proper schema. So fire up the python interpreter in the root directory of grumpy project: $ python - >>> from grumpy.database import init_db - >>> init_db() + >>> from grumpy.models import db + >>> db.create_all() If no errors were shown, then schema creation was successful :) |