Skip to content

Commit

Permalink
fix: add missing launch script (#16)
Browse files Browse the repository at this point in the history
### Summary of Changes

Add a `poetry` script to launch the runner using the command
`safe-ds-runner`.
  • Loading branch information
lars-reimann authored Nov 30, 2023
1 parent 69aaded commit 1564add
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ Get the latest version from [PyPI](https://pypi.org/project/safe-ds-runner):
pip install safe-ds-runner
```

## Usage

Launch the runner:

```shell
safe-ds-runner
```

## Documentation

You can find the full documentation [here](https://runner.safeds.com).
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ packages = [
{ include = "safeds_runner", from = "src" },
]

[tool.poetry.scripts]
safe-ds-runner = "safeds_runner.server.main:main"

[tool.poetry.dependencies]
python = "^3.11,<3.13"
safe-ds = ">=0.14,<0.17"
Expand Down

0 comments on commit 1564add

Please sign in to comment.