Flask app dont start on heroku server
问题 I'm trying to deploy a Flask app with Heroku. It's simple API. Works great local with foreman but I get error (log is below) when starts on heroku. This is my app code (I know it's but looking in one block, but I have problems to split it to files): import flask import flask.ext.sqlalchemy import flask.ext.restless app = flask.Flask(__name__) app.config['DEBUG'] = True app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql://user:password@server/db' db = flask.ext.sqlalchemy.SQLAlchemy(app) from