diff -r f7febf052997 -r e0dbcf98c13e server/web/tweetgserver/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server/web/tweetgserver/__init__.py Tue Feb 14 18:38:48 2012 +0100 @@ -0,0 +1,13 @@ +from flask import Flask +from flaskext.sqlalchemy import SQLAlchemy +from flaskext.cache import Cache + +app = Flask(__name__, instance_relative_config=True) + +app.config.from_pyfile('settings.cfg', silent=False) + +db = SQLAlchemy(app) +cache = Cache(app) + +import tweetgserver.views +import iri_tweet.models \ No newline at end of file