mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00

Using new-style flask extensions imports. grep tells me there were the only flask.ext.* occurences remaining in ihatemoney code.
16 lines
290 B
Python
Executable file
16 lines
290 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from flask_script import Manager
|
|
from flask_migrate import Migrate, MigrateCommand
|
|
|
|
from run import app
|
|
from models import db
|
|
|
|
migrate = Migrate(app, db)
|
|
|
|
manager = Manager(app)
|
|
manager.add_command('db', MigrateCommand)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
manager.run()
|