From 1869504b8a33317fcf6b5dfc4285529e3b3895f4 Mon Sep 17 00:00:00 2001 From: Sandusky <39354014+cold-briu@users.noreply.github.com> Date: Mon, 16 Oct 2023 08:41:28 -0500 Subject: [PATCH] docs: link to docs hub fuel installation guide (#1374) * docs: link to docs hub fuel installation guide * docs: installation guide wording --- docs/src/getting-started/dependencies.md | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/docs/src/getting-started/dependencies.md b/docs/src/getting-started/dependencies.md index 442de775f..b89823e33 100644 --- a/docs/src/getting-started/dependencies.md +++ b/docs/src/getting-started/dependencies.md @@ -6,29 +6,18 @@ To run the Fuel indexer, you'll need to install a few dependencies on your system: -1. The [Rust programming language, with its package manager](https://www.rust-lang.org/tools/install) -2. [`fuelup`](#fuelup), the Fuel toolchain manager -3. A [PostgresQL](#postgresql) server backend -4. The [`wasm32-unknown-unknown`](#web-assembly-wasm) `rustup` target -5. [`wasm-snip`](#web-assembly-wasm), a utility for stripping symbols from WebAssemly binaries. +1. The [Fuel toolchain](https://docs.fuel.network/guides/installation) +2. A [PostgresQL](#postgresql) server backend +3. The [`wasm32-unknown-unknown`](#web-assembly-wasm) `rustup` target +4. [`wasm-snip`](#web-assembly-wasm), a utility for stripping symbols from WebAssemly binaries. > If you don't want to install a database directly onto your system, you can use Docker to run a database in an isolated container. You can install Docker by following its [installation instructions](https://docs.docker.com/get-docker/). > > For reference purposes, we provide a [`docker compose` file](https://github.com/FuelLabs/fuel-indexer/blob/develop/scripts/docker-compose.yaml) that comes with a PostgresSQL server and a Fuel indexer service. -## `fuelup` +## The `Fuel` toolchain -We strongly recommend that you use the Fuel indexer that's made available via [`forc`, the Fuel orchestrator](https://fuellabs.github.io/sway/master/book/forc/index.html). You can get `forc` (and other Fuel components) by way of [`fuelup`, the Fuel toolchain manager](https://fuellabs.github.io/fuelup/latest). - -Install `fuelup` by running the following command, which downloads and runs the installation script. - -```bash -curl --proto '=https' --tlsv1.2 -sSf https://install.fuel.network/fuelup-init.sh | sh -``` - -After `fuelup` has been installed, the `forc index` command and `fuel-indexer` binaries should be available on your system. - -> A simple `forc index check` can be used to show which indexer components you have installed via `fuelup`. +Please visit the Fuel [installation guide](https://docs.fuel.network/guides/installation) to install the Fuel toolchain, which includes binaries for the Fuel indexer. ## PostgreSQL