I'm migrating a Flask app from another server and developer and he's not using flask_app.py, but another file, runserver.py, to start the app. The content of runserver.py is
:::python app = Flask(__name__)
:::python if __name__ == '__main__':
:::python db.metadata.create_all(db.engine)
:::python if 'liveconsole' not in gethostname():
:::python app.run()
and the ...wsgi.py file looks like:
:::python project_home = u'/home/DrDarin/hipcooks' if project_home not in
:::python sys.path:
:::python sys.path = [project_home] + sys.path
:::python from runserver import app as application
What am I missing to get this thing running? All I get is a "Coming Soon" page.