# PR Description This PR renames `actor` to `worker` **Does not include deployment related things in `.github/workflows/release-containers.yml`**
10 lines
281 B
Bash
10 lines
281 B
Bash
#!/bin/bash
|
|
|
|
echo "Installing toolkits..."
|
|
for toolkit in $(echo $TOOLKITS | tr "," " "); do
|
|
echo "Installing $toolkit..."
|
|
pip install $toolkit
|
|
done
|
|
|
|
echo "Starting arcade..."
|
|
arcade workerup --host $HOST --port $PORT $([ "$OTEL_ENABLE" = "true" ] && echo "--otel-enable")
|