From 7534c12816a7e2984e22b0450089d74023757c52 Mon Sep 17 00:00:00 2001 From: Sandusky <39354014+cold-briu@users.noreply.github.com> Date: Sun, 15 Oct 2023 14:41:37 -0500 Subject: [PATCH] docs: link to docs hub fuel installation guide (#1153) ## Description In order to remove documentation redundancy issues, the fuel installation guide is being centralized in the docs-hub. Check [docs-hub/62](https://github.com/FuelLabs/docs-hub/pull/62) ## Checklist - [x] I have linked to any relevant issues. - [x] I have commented my code, particularly in hard-to-understand areas. - [x] I have updated the documentation where relevant (API docs, the reference, and the Sway book). - [ ] I have added tests that prove my fix is effective or that my feature works. - [] I have added (or requested a maintainer to add) the necessary `Breaking*` or `New Feature` labels where relevant. - [x] I have done my best to ensure that my PR adheres to [the Fuel Labs Code Review Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md). - [ ] I have requested a review from the relevant team or maintainers. --------- Co-authored-by: Oleksii Filonenko Co-authored-by: Ahmed Sagdati <37515857+segfault-magnet@users.noreply.github.com> --- docs/src/getting-started.md | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 8105def0d1..b684d4980b 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -1,24 +1,15 @@ # Getting Started -## Dependencies +## Installation Guide - - -The dependencies for using the Fuel Rust SDK are: - --- [The latest `stable` Rust toolchain](https://docs.fuel.network/guides/installation/#installing-rust); --- [`forc` and `fuel-core` binaries](https://docs.fuel.network/guides/installation/#installing-the-fuel-toolchain-using-fuelup). - +Please visit the Fuel [installation guide](https://docs.fuel.network/guides/installation) to install the Fuel toolchain binaries and prerequisites. `forc` is Sway equivalent of Rust's `cargo`. `fuel-core` is a Fuel full node implementation. - - There are two main ways you can use the Fuel Rust SDK: 1. Creating a new Sway project with `forc` and running the tests 2. Creating a standalone project and importing the `fuels-rs` crate - ## Creating a new project with Forc @@ -135,4 +126,4 @@ cargo test -- --nocapture ## More in-depth Fuel and Sway knowledge -Read [The Sway Book](https://fuellabs.github.io/sway/master/book/introduction/index.html) for more in-depth knowledge about Sway, the official smart contract language for the Fuel Virtual Machine. +Read [The Sway Book](https://docs.fuel.network/docs/sway/) for more in-depth knowledge about Sway, the official smart contract language for the Fuel Virtual Machine.