From ba971b43604fcc2810acf5edfbf8a89ec2ceb540 Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Wed, 7 Jul 2010 14:22:28 +0300 Subject: List Flask and Flask-SQLAlchemy as dependencies, update installation docs --- README | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'README') diff --git a/README b/README index 86a674c..ed9de86 100644 --- a/README +++ b/README @@ -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 :) -- cgit v1.2.3-65-gdbad