diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..e69de29 diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..e5d942d --- /dev/null +++ b/manage.py @@ -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() \ No newline at end of file diff --git a/rush/__init__.py b/rush/__init__.py index e69de29..60641b7 100644 --- a/rush/__init__.py +++ b/rush/__init__.py @@ -0,0 +1 @@ +from .core import app \ No newline at end of file