From 337e2db55875b5e9491cc06ad307470075e1be5f Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Wed, 13 Dec 2017 11:19:19 +0100 Subject: [PATCH] Add manage.py to run Pillar commands within the Attract repo This is useful when setting up Attract as a standalone application. --- manage.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 manage.py diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..b7c1f98 --- /dev/null +++ b/manage.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python + +from pillar import cli +from runserver import app + +cli.manager.app = app +cli.manager.run()