mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
98ea1c8873
Conflicts: conf/nginx.conf sources/budget/run.py sources/budget/utils.py
16 lines
298 B
Python
Executable file
16 lines
298 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from flask.ext.script import Manager
|
|
from flask.ext.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()
|