From 9b0e3d29fef3d1fe720de634d906c94a46098e9c Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Thu, 17 Aug 2017 10:36:58 +0200 Subject: [PATCH] revert incorrect removal of the internal server startup CLI --- isso/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/isso/__init__.py b/isso/__init__.py index 0a62290..b2e5688 100644 --- a/isso/__init__.py +++ b/isso/__init__.py @@ -220,6 +220,9 @@ def main(): imprt.add_argument("--empty-id", dest="empty_id", action="store_true", help="workaround for weird Disqus XML exports, #135") + # run Isso as stand-alone server + serve = subparser.add_parser("run", help="run server") + args = parser.parse_args() conf = config.load(join(dist.location, dist.project_name, "defaults.ini"), args.conf)