From 854c197e359387af3065e975b43972af41f82d3b Mon Sep 17 00:00:00 2001 From: David Boreham Date: Tue, 21 Nov 2023 21:58:49 -0700 Subject: [PATCH] Move run-webapp command --- stack_orchestrator/deploy/{ => webapp}/run_webapp.py | 0 stack_orchestrator/main.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename stack_orchestrator/deploy/{ => webapp}/run_webapp.py (100%) diff --git a/stack_orchestrator/deploy/run_webapp.py b/stack_orchestrator/deploy/webapp/run_webapp.py similarity index 100% rename from stack_orchestrator/deploy/run_webapp.py rename to stack_orchestrator/deploy/webapp/run_webapp.py diff --git a/stack_orchestrator/main.py b/stack_orchestrator/main.py index 8ee8ae61..fdcad96f 100644 --- a/stack_orchestrator/main.py +++ b/stack_orchestrator/main.py @@ -20,7 +20,7 @@ from stack_orchestrator.repos import setup_repositories from stack_orchestrator.build import build_containers from stack_orchestrator.build import build_npms from stack_orchestrator.build import build_webapp -from stack_orchestrator.deploy import run_webapp +from stack_orchestrator.deploy.webapp import run_webapp from stack_orchestrator.deploy import deploy from stack_orchestrator import version from stack_orchestrator.deploy import deployment