Skip to content

Latest commit

 

History

History
87 lines (62 loc) · 3.76 KB

GETTING_STARTED.md

File metadata and controls

87 lines (62 loc) · 3.76 KB

Getting Started

Requirements

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

Running Project Locally

📦 - Install Dependencies

pnpm install

📗 Project Overview

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
dev Run development server for the WebApp packages/app.
contracts Build, generate types, deploy packages/contracts. It should be used when editing contracts.
contracts:build Build and generate types packages/contracts.
contracts:deploy Deploy the current binaries.
scripts:setup Setup swayswap-scripts used to build and deploy contracts and generate types.
services:clean Stop and remove all development containers that are running locally.
services:setup Run the local network, setup swayswap-scripts and build and deploy contracts normally used on the first run.

Other scripts can be found in package.json.

Running Tests

Please make sure you have done these steps first:

Run Tests in Development Mode

To run all tests against the node and contract configured in packages/app/.env (or packages/app/.env.test if the file exists):

pnpm test

Run Tests on a Local Test Environment

With this command we are going to:

  • launch a local test-specific fuel-core node.
  • launch a local test-specific faucet API.
  • Setup swayswap-scripts.
  • Build and deploy the SwaySwap contracts to the test node.
  • Initialize the token contract deployed on the test node.
  • Create a packages/app/.env.test.
  • Run all tests against the configs packages/app/.env.test.
  • Delete the local test-specific fuel-core node.
  • Delete the local test-specific faucet API.
  • Delete packages/app/.env.test.

Note: .env.test is not deleted automatically. It must be deleted manually if desired.

pnpm ci:test