@@ -12,72 +12,94 @@ It demonstrates how to control Boston Dynamics Spot robot through a basic workfl
12
12
13
13
## Usage
14
14
15
- 1 . Run Restack local engine with Docker:
15
+ ## Start Restack
16
16
17
- ``` bash
18
- docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main
19
- ```
17
+ To start the Restack, use the following Docker command:
20
18
21
- 2 . Open the web UI to see the workflows:
19
+ ``` bash
20
+ docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main
21
+ ```
22
22
23
- ``` bash
24
- http://localhost:5233
25
- ```
23
+ ## Start python shell
26
24
27
- 3 . Clone this repository :
25
+ If using uv :
28
26
29
- ``` bash
30
- git clone https://github.com/restackio/examples-python
31
- cd examples-python/examples/bostondynamics_spot
32
- ```
27
+ ``` bash
28
+ uv venv && source .venv/bin/activate
29
+ ```
33
30
34
- 4 . Install dependencies using Poetry :
31
+ If using poetry :
35
32
36
- ``` bash
37
- poetry env use 3.12
38
- ```
33
+ ``` bash
34
+ poetry env use 3.12 && poetry shell
35
+ ```
39
36
40
- ``` bash
41
- poetry shell
42
- ```
37
+ If using pip:
43
38
44
- ``` bash
45
- poetry install
46
- ```
39
+ ``` bash
40
+ python -m venv .venv && source .venv/bin/activate
41
+ ```
47
42
48
- ``` bash
49
- poetry env info # Optional: copy the interpreter path to use in your IDE (e.g. Cursor, VSCode, etc.)
50
- ```
43
+ ## Install dependencies
51
44
52
- 5 . Run the services :
45
+ If using uv :
53
46
54
- ``` bash
55
- poetry run services
56
- ```
47
+ ``` bash
48
+ uv sync
49
+ uv run services
50
+ ```
57
51
58
- This will start the Restack service with the defined workflows and functions.
52
+ If using poetry:
59
53
60
- 6 . In a new terminal, schedule the workflow:
54
+ ``` bash
55
+ poetry install
56
+ poetry run services
57
+ ```
61
58
62
- ``` bash
63
- poetry shell
64
- ```
59
+ If using pip:
65
60
66
- ``` bash
67
- poetry run schedule
68
- ```
61
+ ``` bash
62
+ pip install -e .
63
+ python -c " from src.services import run_services; run_services()"
64
+ ```
69
65
70
- This will schedule the ` GreetingWorkflow ` and print the result.
66
+ ## Run workflows
71
67
72
- 7 . Optionally, schedule the workflow to run on a specific calendar or interval:
68
+ ### from UI
73
69
74
- ``` bash
75
- poetry run calendar
76
- ```
70
+ You can run workflows from the UI by clicking the "Run" button.
77
71
78
- ``` bash
79
- poetry run interval
80
- ```
72
+ ![ Run workflows from UI] ( ./ui-screenshot.png )
73
+
74
+ ### from API
75
+
76
+ You can run workflows from the API by using the generated endpoint:
77
+
78
+ ` POST http://localhost:6233/api/workflows/TranscribeTranslateWorkflow `
79
+
80
+ ### from any client
81
+
82
+ You can run workflows with any client connected to Restack, for example:
83
+
84
+ If using uv:
85
+
86
+ ``` bash
87
+ uv run schedule
88
+ ```
89
+
90
+ If using poetry:
91
+
92
+ ``` bash
93
+ poetry run schedule
94
+ ```
95
+
96
+ If using pip:
97
+
98
+ ``` bash
99
+ python -c " from schedule_workflow import run_schedule_workflow; run_schedule_workflow()"
100
+ ```
101
+
102
+ executes ` schedule_workflow.py ` which will connect to Restack and execute the ` TranscribeTranslateWorkflow ` workflow.
81
103
82
104
## Project Structure
83
105
0 commit comments