Skip to content

Commit

Permalink
deploy: 0993923
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 1, 2023
1 parent d96a69d commit ecb32a8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions master/concepts/components.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ <h2 id="components-overview"><a class="header" href="#components-overview">Compo
with some built-in plugin executables, including but not limited to: <a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_client/index.html"><code>forc-client</code></a>, <a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_fmt.html"><code>forc-fmt</code></a> and <a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_lsp.html"><code>forc-lsp</code></a>.</li>
<li><a href="https://github.com/FuelLabs/fuel-core"><code>fuel-core</code></a> — Full node implementation of the Fuel v2 protocol, written in Rust.</li>
<li><a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_explore.html"><code>forc-explore</code></a> — A Forc plugin for running the Fuel Block Explorer.</li>
<li><a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_crypto.html"><code>forc-crypto</code></a> — Forc plugin for hashing arbitrary data.</li>
<li><a href="https://github.com/FuelLabs/forc-wallet"><code>forc-wallet</code></a> - A Forc plugin for managing Fuel wallets.</li>
<li><a href="https://github.com/FuelLabs/fuel-indexer"><code>fuel-indexer</code></a> - A standalone service that can be used to index various components of the Fuel blockchain.</li>
<li><a href="https://github.com/FuelLabs/fuel-indexer"><code>forc-index</code></a> - A Forc plugin used to interact with a Fuel Indexer service.</li>
Expand Down
3 changes: 2 additions & 1 deletion master/installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ <h2 id="quickstart"><a class="header" href="#quickstart">Quickstart</a></h2>
<pre><code class="language-sh">curl --proto '=https' --tlsv1.2 -sSf https://install.fuel.network/fuelup-init.sh | sh
</code></pre>
<!-- install:example:end -->
<p>This will install <code>forc</code>, <code>forc-client</code>, <code>forc-fmt</code>, <code>forc-lsp</code>, <code>forc-wallet</code> as well as <code>fuel-core</code> in <code>~/.fuelup/bin</code>. The script will ask for permission to add <code>~/.fuelup/bin</code> to your <code>PATH</code>.</p>
<p>This will install <code>forc</code>, <code>forc-client</code>, <code>forc-fmt</code>, <code>forc-crypto</code>, <code>forc-lsp</code>, <code>forc-wallet</code> as well as <code>fuel-core</code> in <code>~/.fuelup/bin</code>. The script will ask for permission to add <code>~/.fuelup/bin</code> to your <code>PATH</code>.</p>
<p>Otherwise, you can also pass <code>--no-modify-path</code> so that <code>fuelup-init</code> does not modify your <code>PATH</code> and will not ask for permission to do so:</p>
<pre><code class="language-sh">curl --proto '=https' --tlsv1.2 -sSf https://install.fuel.network/fuelup-init.sh | sh -s -- --no-modify-path
</code></pre>
Expand All @@ -196,6 +196,7 @@ <h2 id="quickstart"><a class="header" href="#quickstart">Quickstart</a></h2>
fuel-core --version
forc-deploy --version
forc-fmt --version
forc-crypto --version
forc-lsp --version
forc-run --version
</code></pre>
Expand Down
4 changes: 3 additions & 1 deletion master/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ <h2 id="quickstart"><a class="header" href="#quickstart">Quickstart</a></h2>
<pre><code class="language-sh">curl --proto '=https' --tlsv1.2 -sSf https://install.fuel.network/fuelup-init.sh | sh
</code></pre>
<!-- install:example:end -->
<p>This will install <code>forc</code>, <code>forc-client</code>, <code>forc-fmt</code>, <code>forc-lsp</code>, <code>forc-wallet</code> as well as <code>fuel-core</code> in <code>~/.fuelup/bin</code>. The script will ask for permission to add <code>~/.fuelup/bin</code> to your <code>PATH</code>.</p>
<p>This will install <code>forc</code>, <code>forc-client</code>, <code>forc-fmt</code>, <code>forc-crypto</code>, <code>forc-lsp</code>, <code>forc-wallet</code> as well as <code>fuel-core</code> in <code>~/.fuelup/bin</code>. The script will ask for permission to add <code>~/.fuelup/bin</code> to your <code>PATH</code>.</p>
<p>Otherwise, you can also pass <code>--no-modify-path</code> so that <code>fuelup-init</code> does not modify your <code>PATH</code> and will not ask for permission to do so:</p>
<pre><code class="language-sh">curl --proto '=https' --tlsv1.2 -sSf https://install.fuel.network/fuelup-init.sh | sh -s -- --no-modify-path
</code></pre>
Expand All @@ -213,6 +213,7 @@ <h2 id="quickstart"><a class="header" href="#quickstart">Quickstart</a></h2>
fuel-core --version
forc-deploy --version
forc-fmt --version
forc-crypto --version
forc-lsp --version
forc-run --version
</code></pre>
Expand Down Expand Up @@ -405,6 +406,7 @@ <h2 id="components-overview"><a class="header" href="#components-overview">Compo
with some built-in plugin executables, including but not limited to: <a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_client/index.html"><code>forc-client</code></a>, <a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_fmt.html"><code>forc-fmt</code></a> and <a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_lsp.html"><code>forc-lsp</code></a>.</li>
<li><a href="https://github.com/FuelLabs/fuel-core"><code>fuel-core</code></a> — Full node implementation of the Fuel v2 protocol, written in Rust.</li>
<li><a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_explore.html"><code>forc-explore</code></a> — A Forc plugin for running the Fuel Block Explorer.</li>
<li><a href="https://fuellabs.github.io/sway/master/book/forc/plugins/forc_crypto.html"><code>forc-crypto</code></a> — Forc plugin for hashing arbitrary data.</li>
<li><a href="https://github.com/FuelLabs/forc-wallet"><code>forc-wallet</code></a> - A Forc plugin for managing Fuel wallets.</li>
<li><a href="https://github.com/FuelLabs/fuel-indexer"><code>fuel-indexer</code></a> - A standalone service that can be used to index various components of the Fuel blockchain.</li>
<li><a href="https://github.com/FuelLabs/fuel-indexer"><code>forc-index</code></a> - A Forc plugin used to interact with a Fuel Indexer service.</li>
Expand Down
2 changes: 1 addition & 1 deletion master/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion master/searchindex.json

Large diffs are not rendered by default.

0 comments on commit ecb32a8

Please sign in to comment.