import app

This commit is contained in:
Kenneth Reitz
2012-07-08 23:50:28 -04:00
parent 10dbdc8d68
commit 00a9657cf4
3 changed files with 18 additions and 0 deletions
View File
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from flaskext.script import Manager
from rush import app
manager = Manager(app)
# @manager.command
# def inbox(addr, port):
# from fedex.emaild import inbox
# inbox.serve(int(port), addr)
if __name__ == "__main__":
manager.run()
+1
View File
@@ -0,0 +1 @@
from .core import app