You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2026. It is now read-only.
To build the `sample-wasi-http-rust` example, you will follow the [instructions](https://github.com/bytecodealliance/sample-wasi-http-rust#sample-wasihttp-in-rust).
60
+
61
+
```bash
62
+
git submodule update --init
63
+
cd examples/sample-wasi-http-rust
64
+
cargo b
65
+
```
66
+
51
67
## Start Docker composition
52
68
53
69
Start docker composition
@@ -88,6 +104,8 @@ This will output a response like the following
88
104
Successfully created config.toml file
89
105
```
90
106
107
+
If you are running manager and proplet using docker you will need to copy the `config.toml` file to the `docker/config.toml` file. Then uncomment volume mapping lines in the `docker-compose.yml` file. After that you can run `make start-supermq` to start the SuperMQ docker container.
108
+
91
109
The `config.toml` file will be created in the current directory. This file contains the credentials for the user, domain, manager client, proplet client, and manager channel. It will look something like this:
92
110
93
111
```toml
@@ -232,6 +250,26 @@ This will output a response like the following
232
250
}
233
251
```
234
252
253
+
To can use the CLI to create a task as follows:
254
+
255
+
```bash
256
+
# propeller-cli tasks create <name>
257
+
propeller-cli tasks create demo
258
+
```
259
+
260
+
This will output a response like the following
261
+
262
+
```json
263
+
{
264
+
"created_at": "2025-09-16T10:25:31.491528704Z",
265
+
"finish_time": "0001-01-01T00:00:00Z",
266
+
"id": "2ccb6b7c-3ce8-4c27-be19-01172954d593",
267
+
"name": "demo",
268
+
"start_time": "0001-01-01T00:00:00Z",
269
+
"updated_at": "0001-01-01T00:00:00Z"
270
+
}
271
+
```
272
+
235
273
### Get a task
236
274
237
275
```bash
@@ -254,19 +292,66 @@ This will output a response like the following
0 commit comments