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
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ Install this tool using `pip`:
```bash
pip install devhub-cli
```

Or just install and execute via `uvx`

```
uvx devhub-cli
```

## Usage

For help, run:
Expand All @@ -24,6 +31,11 @@ You can also use:
python -m devhub --help
```

Via `uvx`
```
uvx devhub-cli
```

## Theme Commands

The DevHub CLI provides powerful theme management capabilities for synchronizing and managing your DevHub theme components locally.
Expand Down Expand Up @@ -127,3 +139,7 @@ To run the tests:
```bash
python -m pytest
```

## CLI template

CLI click template based on https://github.com/simonw/click-app
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "devhub-cli"
version = "0.1"
version = "0.1.1"
description = "CLI interface to devhub"
readme = "README.md"
authors = [{name = "Daniel Rust"}]
Expand All @@ -27,6 +27,7 @@ CI = "https://github.com/devhub/devhub-cli/actions"

[project.scripts]
devhub = "devhub.cli:cli"
devhub-cli = "devhub.cli:cli"

[project.optional-dependencies]
test = ["pytest"]
Expand Down