Skip to content

Instantly share code, notes, and snippets.

@vkolev
Created April 14, 2014 22:06
Show Gist options
  • Save vkolev/10686028 to your computer and use it in GitHub Desktop.
Save vkolev/10686028 to your computer and use it in GitHub Desktop.
from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy
from app.views.index import IndexView
app = Flask(__name__)
app.config.from_object('config')
db = SQLAlchemy(app)
IndexView.register(app)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment