docs: runner docs and isort first part
Create a new service / deploy (push) Successful in 5s

This commit is contained in:
Benjamin Labrecque
2026-06-30 16:37:48 +02:00
parent d72d8353ba
commit 2a32abd6e9
3 changed files with 10 additions and 1 deletions
+7
View File
@@ -21,3 +21,10 @@ curl -LO https://nodejs.org/dist/v20.11.1/node-v20.11.1-linux-x64.tar.xz
tar -xf node-v20.11.1-linux-x64.tar.xz --strip-components=2 -C ~/.local/bin/ node-v20.11.1-linux-x64/bin/
rm node-v20.11.1-linux-x64.tar.xz
```
## Launch the runner
```shell
sudo su svcusr-sls2hla
/usr/local/bin/act_runner daemon
```
@@ -22,6 +22,7 @@ from time import sleep
import typer
import yaml
from agebd.enums import LogLevel
from agebd.pv import PVLink as PV
from agebd.runner import CallbackRunner
@@ -57,7 +58,6 @@ class PVs(BasePVs):
super().__init__(service_name, pv_factory)
PV = pv_factory
# TODO: until end of init
HLAnames = read_hla_names()
self.HLAs = []
+2
View File
@@ -28,3 +28,5 @@ line-length = 100
# use isort to sort imports
extend-select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["agebd"]