-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(docs): Add targets to make it easy to locally preview docs. (#1098)
* docs(docs): Add targets to make it easy to locally preview the documentation of the repo. * ci(general): Bump cat-ci version * fix(docs): Spelling * Update utilities/docs-preview/justfile Co-authored-by: bkioshn <[email protected]> --------- Co-authored-by: bkioshn <[email protected]>
- Loading branch information
Showing
14 changed files
with
74 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,7 @@ Jörmungandr | |
jsonschema | ||
junitreport | ||
junitxml | ||
Justfile | ||
keychains | ||
Keyhash | ||
keyserver | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
catalyst_voices_packages/catalyst_cardano/catalyst_cardano/wallet-automation/Earthfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
local.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
VERSION 0.8 | ||
|
||
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.2.22 AS docs-ci | ||
|
||
|
||
# update-docs-dev-script: get the latest docs dev script from CI. | ||
update-docs-dev-script: | ||
DO docs-ci+SYNC_LOCAL_DOCS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# use with https://github.com/casey/just | ||
# | ||
# Catalyst Voices Documentation Local Preview Build | ||
|
||
# cspell: words prereqs, commitlog | ||
|
||
default: | ||
@just --list --unsorted | ||
|
||
# Ensure we have the latest version of the dev docs script locally. | ||
update-docs-dev-script: | ||
earthly +update-docs-dev-script | ||
|
||
# Live rebuilds and deploys the documentation locally. | ||
# | ||
# See root Justfile for full documentation. | ||
preview-docs: update-docs-dev-script | ||
echo "Requires Python Installed. Version >= 3.11" | ||
python --version | ||
./local.py --target "../../docs+local" --exposed-port 8280 cat-voices-docs:latest |