From 9d7e32eb8c1af9d78c85377228b46eb781a358a1 Mon Sep 17 00:00:00 2001 From: boneyard93501 <4523011+boneyard93501@users.noreply.github.com> Date: Sun, 13 Feb 2022 00:09:27 -0600 Subject: [PATCH] add new-style deploy config file --- .../configs/hello_world_deployment_cfg.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 quickstart/2-hosted-services/configs/hello_world_deployment_cfg.json diff --git a/quickstart/2-hosted-services/configs/hello_world_deployment_cfg.json b/quickstart/2-hosted-services/configs/hello_world_deployment_cfg.json new file mode 100644 index 0000000..7c04fed --- /dev/null +++ b/quickstart/2-hosted-services/configs/hello_world_deployment_cfg.json @@ -0,0 +1,11 @@ +{ + "hello-world": { + "modules": [ + { + "name": "hello_world", + "path": "./artifacts/hello_world.wasm", + "logger_enabled": [true] + } + ] + } +}