Skip to content

Latest commit

 

History

History
82 lines (55 loc) · 2.68 KB

GETTING_STARTED.md

File metadata and controls

82 lines (55 loc) · 2.68 KB

Getting Started

Requirements

This project includes both frontend and contracts. To begin, install dependencies:

Running Project Locally

📚 - Getting the Repository

  1. Visit the Fuel Explorer repo and fork the project.
  2. Then clone your forked copy to your local machine and get to work.
git clone https://github.com/FuelLabs/fuel-explorer
cd fuel-explorer

📦 - Install Dependencies

pnpm install

📒 - Run development

This command will start all the development services;

  • It will start a fuel-core local node;
  • It will start the explorer graphql API;
pnpm dev

📗 Development

This section has a brief description of each directory. More details can be found inside each package, by clicking on the links.

🧰 Useful Scripts

To make life easier we added as many useful scripts as possible to our package.json. These are some of the most used during development:

pnpm <command name>
Script Description
node:start Run the local network with fuel-core and the faucet API.
node:stop Stop all containers without removing data
node:clean Stop and remove all development containers that are running locally.
node:restart Restart all containers without removing data

Other scripts can be found in package.json.