Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ dependencies = [
"cable_guy",
"commander",
"disk_usage",
"helper",
"nmea_injector",
"pardal",
"ping",
Expand Down Expand Up @@ -58,7 +57,6 @@ bridget = { workspace = true }
cable_guy = { workspace = true }
commander = { workspace = true }
disk_usage = { workspace = true }
helper = { workspace = true }
nmea_injector = { workspace = true }
pardal = { workspace = true }
ping = { workspace = true }
Expand All @@ -67,7 +65,7 @@ wifi = { workspace = true }

[tool.uv.workspace]
members = ["services/*", "libs/*"]
exclude = ["services/versionchooser", "services/kraken"]
exclude = ["services/versionchooser", "services/kraken", "services/helper"]

# ------------------ Tooling Configurations ------------------

Expand Down
3 changes: 3 additions & 0 deletions core/python-venv2/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dependencies = [
"commonwealth",
"versionchooser",
"kraken",
"helper",
]

[dependency-groups]
Expand Down Expand Up @@ -40,10 +41,12 @@ default-groups = ["dev", "lint"]
commonwealth = { workspace = true }
versionchooser = { workspace = true }
kraken = { workspace = true }
helper = { workspace = true }

[tool.uv.workspace]
members = [
"../libs/commonwealth",
"../services/versionchooser",
"../services/kraken",
"../services/helper",
]
71 changes: 68 additions & 3 deletions core/python-venv2/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/services/helper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ServiceInfo(BaseModel):
versions: List[str]
port: int
path: Optional[str]
metadata: Optional[ServiceMetadata]
metadata: Optional[ServiceMetadata] = None

def __hash__(self) -> int:
return hash(self.port)
Expand Down
19 changes: 8 additions & 11 deletions core/services/helper/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@ description = "Helper information for development."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"beautifulsoup4==4.9.3",
"beautifulsoup4==4.14.3",
"commonwealth==0.1.0",
"fastapi==0.105.0",
"fastapi-versioning==0.9.1",
"loguru==0.5.3",
"psutil==5.7.2",
"pydantic==1.10.12",
"fastapi==0.125.0",
"fastapi-versioning==0.10.0",
"loguru==0.7.3",
"psutil==7.1.3",
"pydantic==2.12.5",
"speedtest-cli==2.1.3",
"requests==2.26.0",
"uvicorn==0.18.0",
"requests==2.32.5",
"uvicorn==0.38.0",
]

[tool.uv]
package = false

[tool.uv.sources]
commonwealth = { workspace = true }
2 changes: 1 addition & 1 deletion core/start-blueos-core
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ SERVICES=(
'bridget',0,"nice -19 $RUN_AS_REGULAR_USER_BEGIN $SERVICES_PATH/bridget/main.py $RUN_AS_REGULAR_USER_END"
'commander',250,"$SERVICES_PATH/commander/main.py"
'nmea_injector',250,"nice -19 $SERVICES_PATH/nmea_injector/main.py"
'helper',250,"$SERVICES_PATH/helper/main.py"
'helper',250,"$BLUEOS_PYTHON_BIN_SECONDARY $SERVICES_PATH/helper/main.py"
'iperf3',250," iperf3 --server --port 5201"
'linux2rest',250,"linux2rest --log-settings netstat=30,platform=10,serial-ports=10,cpu=10,disk=30,info=10,memory=10,network=10,process=60,temperature=10,unix-time-seconds=10,usb=60"
'filebrowser',250,"nice -19 filebrowser --database /etc/filebrowser/filebrowser.db --baseurl /file-browser"
Expand Down
Loading