def setversion(env): ''' Manually set the alembic version of the database to the provided value. ''' init_for(env) config = FlaskAlembicConfig("alembic.ini") version = raw_input("Enter the alembic version to be set:") command.stamp(config, version)
import sys import os.path sys.path.insert(0, os.path.dirname(__file__)) from peopleflow import app as application, init_for init_for('production')
def create(env): "Creates database tables from sqlalchemy models" init_for(env) db.create_all() config = FlaskAlembicConfig("alembic.ini") command.stamp(config, "head")
def drop(env): "Drops database tables" init_for(env) if prompt_bool("Are you sure you want to lose all your data?"): db.drop_all()
def run(self, args): if len(args) and not args[0].startswith('-'): init_for(args[0]) super(InitedMigrations, self).run(args[1:])
def handle(self, *args, **kwargs): if 'env' in kwargs: init_for(kwargs.pop('env')) super(InitedServer, self).handle(*args, **kwargs)
from peopleflow import init_for init_for('dev')
#!/usr/bin/env python import sys from peopleflow import app, init_for init_for('dev') try: port = int(sys.argv[1]) except (IndexError, ValueError): port = 8000 app.run('0.0.0.0', port, debug=True)