diff --git a/app/data/stacks/test/deploy/commands.py b/app/data/stacks/test/deploy/commands.py index 4947f976..d8fb557f 100644 --- a/app/data/stacks/test/deploy/commands.py +++ b/app/data/stacks/test/deploy/commands.py @@ -45,6 +45,13 @@ def init(command_context: DeployCommandContext): return yaml.load(default_spec_file_content) +def create(command_context: DeployCommandContext): + data = "create-command-output-data" + output_file_path = command_context.deployment_dir.joinpath("create-file") + with open(output_file_path, 'w+') as output_file: + output_file.write(data) + + def get_state(command_context: DeployCommandContext): print("Here we get state") return State.CONFIGURED