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
8 changes: 4 additions & 4 deletions docs/cli/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CLI Reference

```{eval-rst}
.. click:: ss_python.cli:cli
:prog: ss-python-cli
:nested: full
```{toctree}
:maxdepth: 1
ss_python
run
```
7 changes: 7 additions & 0 deletions docs/cli/run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Serious Scaffold Python Run

```{eval-rst}
.. click:: ss_python.cli:run
:prog: ss-python-cli run
:nested: full
```
7 changes: 7 additions & 0 deletions docs/cli/ss_python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Serious Scaffold Python

```{eval-rst}
.. click:: ss_python.cli:cli
:prog: ss-python-cli
:nested: short
```
8 changes: 4 additions & 4 deletions template/docs/cli/index.md.jinja
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CLI Reference

```{eval-rst}
.. click:: {{ module_name }}.cli:cli
:prog: {{ package_name }}-cli
:nested: full
```{toctree}
:maxdepth: 1
{{ module_name }}
run
```
7 changes: 7 additions & 0 deletions template/docs/cli/run.md.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# {{ project_name }} Run

```{eval-rst}
.. click:: {{ module_name }}.cli:run
:prog: {{ package_name }}-cli run
:nested: full
```
7 changes: 7 additions & 0 deletions template/docs/cli/{{ module_name }}.md.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# {{ project_name }}

```{eval-rst}
.. click:: {{ module_name }}.cli:cli
:prog: {{ package_name }}-cli
:nested: short
```
Loading