Load api as blueprint within app.py

This commit is contained in:
James Wang 2015-12-23 17:53:00 -05:00
parent 1574fb153b
commit fe367f664e
2 changed files with 6 additions and 2 deletions

View file

@ -1 +1,2 @@
import models
import models
import api

View file

@ -4,8 +4,11 @@ from flask import Flask
import config
import json
from api.api import api
app = Flask(__name__)
app.secret_key = config.SECRET
app.register_blueprint(api)
@app.route("/api")
def api():
@ -28,4 +31,4 @@ if __name__ == "__main__":
db.create_all()
print db
app.run(host="0.0.0.0", port=8000)
app.run(host="0.0.0.0", port=8000)