From 00a9657cf4983a5a244e578fcfd5e4790a6f7f87 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 8 Jul 2012 23:50:28 -0400 Subject: [PATCH] import app --- Procfile | 0 manage.py | 17 +++++++++++++++++ rush/__init__.py | 1 + 3 files changed, 18 insertions(+) create mode 100644 Procfile create mode 100755 manage.py 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