webapi where you can request scheduled rss feed publishing
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
436 B

def deploy():
"""Run deployment of database."""
from flask_migrate import init, migrate, stamp, upgrade
# This model is required for flask_migrate to make the table
from postmodel import Post # noqa: F401
from app import create_app, db
app = create_app()
app.app_context().push()
db.create_all()
# migrate database to latest revision
init()
stamp()
migrate()
upgrade()
deploy()