diff --git a/examples/golang/providers/custom-template/.gitignore b/examples/golang/providers/custom-template/.gitignore index d73b4fb4da..fff19aa940 100644 --- a/examples/golang/providers/custom-template/.gitignore +++ b/examples/golang/providers/custom-template/.gitignore @@ -1,2 +1,3 @@ keyvalue-inmemory -keyvalue-inmemory.par.gz \ No newline at end of file +keyvalue-inmemory.par.gz +build/* \ No newline at end of file diff --git a/examples/golang/providers/custom-template/README.md b/examples/golang/providers/custom-template/README.md index 9095b783ac..d9b00920bb 100644 --- a/examples/golang/providers/custom-template/README.md +++ b/examples/golang/providers/custom-template/README.md @@ -57,6 +57,13 @@ wash call custom-template wasmcloud:example/system-info.call You can deploy this provider, along with a [prebuilt component](../component/) for testing, by deploying the [wadm.yaml](./wadm.yaml) application. ```bash +# Build the component +cd component +wash build + +# Return to the provider directory +cd .. + # Launch wasmCloud in the background wash up -d # Deploy the application diff --git a/examples/golang/providers/custom-template/component/build/custom-template-component.wasm b/examples/golang/providers/custom-template/component/build/custom-template-component.wasm deleted file mode 100755 index 5d4cf864ea..0000000000 Binary files a/examples/golang/providers/custom-template/component/build/custom-template-component.wasm and /dev/null differ diff --git a/examples/golang/providers/custom-template/component/build/custom_template_component_s.wasm b/examples/golang/providers/custom-template/component/build/custom_template_component_s.wasm deleted file mode 100644 index 46a2790414..0000000000 Binary files a/examples/golang/providers/custom-template/component/build/custom_template_component_s.wasm and /dev/null differ diff --git a/examples/golang/providers/custom-template/go.mod b/examples/golang/providers/custom-template/go.mod index 5bd3060563..cf0962b8b5 100644 --- a/examples/golang/providers/custom-template/go.mod +++ b/examples/golang/providers/custom-template/go.mod @@ -3,7 +3,7 @@ module github.com/wasmCloud/wasmCloud/examples/go/providers/custom-template go 1.22.3 require ( - github.com/wasmCloud/provider-sdk-go v0.0.0-20240605180317-5423f4b7b591 + github.com/wasmCloud/provider-sdk-go v0.0.0-20240626135506-00b1fb3dec9e github.com/wrpc/wrpc/go v0.0.0-20240613112243-134a38a3526e ) diff --git a/examples/golang/providers/custom-template/go.sum b/examples/golang/providers/custom-template/go.sum index 054dec500b..5fd36ff65f 100644 --- a/examples/golang/providers/custom-template/go.sum +++ b/examples/golang/providers/custom-template/go.sum @@ -12,6 +12,8 @@ github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/wasmCloud/provider-sdk-go v0.0.0-20240605180317-5423f4b7b591 h1:B3Vu1XsW9tqhhK4YxAOmY57MRPoeCZVzhFBo69gBoUs= github.com/wasmCloud/provider-sdk-go v0.0.0-20240605180317-5423f4b7b591/go.mod h1:DZRTpRkX3YluIs+FKcx157XbQa1q4rFRDpxbamZZBc0= +github.com/wasmCloud/provider-sdk-go v0.0.0-20240626135506-00b1fb3dec9e h1:UIK1VDU1hwvGTd4S9pokw/IoY0ChIhYldWB44JnWuD8= +github.com/wasmCloud/provider-sdk-go v0.0.0-20240626135506-00b1fb3dec9e/go.mod h1:DZRTpRkX3YluIs+FKcx157XbQa1q4rFRDpxbamZZBc0= github.com/wrpc/wrpc/go v0.0.0-20240508154835-d040797e7796 h1:Z/O56d+UBUL6/AfUgGznbR/o+pC2OK9ZtbvGIMNolZ8= github.com/wrpc/wrpc/go v0.0.0-20240508154835-d040797e7796/go.mod h1:4ODSqZ7VmerRQfX/0l62GzrKSGCiJaPkVBLGJlpIunc= github.com/wrpc/wrpc/go v0.0.0-20240613112243-134a38a3526e h1:BNQdM1BPIRXHze08bd3R1KPqgPYVKUkuEuLUCGcYW5c=