-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): codegen reference docs for
nargo
CLI
- Loading branch information
1 parent
2914310
commit 42b4456
Showing
7 changed files
with
63 additions
and
254 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
#!/usr/bin/env bash | ||
set -eu | ||
|
||
cd $(dirname "$0")/.. | ||
|
||
NARGO_REFERENCE="processed-docs/reference/nargo_commands.md" | ||
rm -f $NARGO_REFERENCE | ||
|
||
echo "--- | ||
title: Nargo | ||
description: | ||
Noir CLI Commands for Noir Prover and Verifier to create, execute, prove and verify programs, | ||
generate Solidity verifier smart contract and compile into JSON file containing ACIR | ||
representation and ABI of circuit. | ||
keywords: | ||
[ | ||
Nargo, | ||
Noir CLI, | ||
Noir Prover, | ||
Noir Verifier, | ||
generate Solidity verifier, | ||
compile JSON file, | ||
ACIR representation, | ||
ABI of circuit, | ||
TypeScript, | ||
] | ||
sidebar_position: 0 | ||
--- | ||
" > $NARGO_REFERENCE | ||
|
||
cargo run -F codegen-docs -- info >> $NARGO_REFERENCE |
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