Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:

- name: Test module --version works using the installed wheel
# If more than one module in src/ replace with module name to test
run: create-gui --version
run: python -m $(ls --hide='*.egg-info' src | head -1) --version
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ The process to use this module goes as follows (WIP):
> `extras` is optional, but allows any embedded screen to be added to make a summary screen e.g. combining all imgs, pirgs and ionps associated with a vacuum space.
1. Run this command to locally generate a schema, which can be used for validation testing

```$ create-gui --schema```
```$ techui-builder --schema```

Add the following at the top of the `techui.yaml` to validate it against a schema

Expand All @@ -60,7 +60,7 @@ The process to use this module goes as follows (WIP):

## Generating the Synoptic

`$ create-gui /path/to/synoptic/techui.yaml`
`$ techui-builder /path/to/synoptic/techui.yaml`

This generates a populated `index.bob` and individual component screens inside `ixx-services/synoptic/opis/`.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"rich>=14.1.0",
"pydantic>=2.11.7",
]
scripts = { create-gui = "techui_builder.__main__:app" }
scripts = { techui-builder = "techui_builder.__main__:app" }

[dependency-groups]
dev = [
Expand Down