from project import app, db from project.models import User, BlogPost # import models # create tables if they don't exist then delete after tables are created with SSH # with app.app_context(): # db.create_all() if __name__ == '__main__': app.run(host='0.0.0.0', debug=False)