mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-10-31 23:25:58 +00:00
152e547ac5
Update some dependencies to their latest version. Make executable scripts executable (chmod +x).
14 lines
288 B
Python
Executable file
14 lines
288 B
Python
Executable file
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
from nyaa import app, db
|
|
from flask_script import Manager
|
|
from flask_migrate import Migrate, MigrateCommand
|
|
|
|
migrate = Migrate(app, db)
|
|
|
|
manager = Manager(app)
|
|
manager.add_command("db", MigrateCommand)
|
|
|
|
if __name__ == "__main__":
|
|
manager.run()
|