Skip to content

Commit

Permalink
Add anothing python commands combination to locally run documentation (
Browse files Browse the repository at this point in the history
…#199)

* Add anothing python commands combination to locally run documentation

* fix typo
  • Loading branch information
nvuillam authored Feb 27, 2025
1 parent 5ac6bdd commit 31d4d66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- Add your updates here :)

- Add another python commands combination to locally run documentation

## [5.7.0] 2024-02-14

- New command [hardis:project:generate:bypass](https://sfdx-hardis.cloudity.com/hardis/project/generate/bypass/) : Generates bypass custom permissions and permission sets for specified sObjects and automations
Expand Down
2 changes: 1 addition & 1 deletion src/hardis-commands-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ export class HardisCommandsProvider
id: "hardis-run-doc",
label: "Run Local HTML Doc Pages",
command:
"(pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists && mkdocs serve) || (python -m install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists && python -m mkdocs serve) || (py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists && py -m mkdocs serve)",
"(pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists && mkdocs serve) || (python -m install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists && python -m mkdocs serve) || (py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists && py -m mkdocs serve) || (pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists && python -m mkdocs serve -v)",
tooltip:
"Run Documentation local web server, then open http://127.0.0.1:8000/ . You need Python on your computer :)",
requiresProject: true,
Expand Down

0 comments on commit 31d4d66

Please sign in to comment.