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
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ dependencies = [
"msgpack>=1.0.0",
]


[project.scripts]
robots = "strands_robots.dashboard:main"
robots-dashboard = "strands_robots.dashboard:main"

[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
lint = "ruff check strands_robots tests"
Expand Down
4 changes: 4 additions & 0 deletions strands_robots/dashboard/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Dashboard package
from strands_robots.dashboard.server import main

__all__ = ["main"]
4 changes: 4 additions & 0 deletions strands_robots/dashboard/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"""Run the dashboard: python -m strands_robots.dashboard"""
from strands_robots.dashboard.server import main

main()
Loading
Loading