Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 632 Bytes

File metadata and controls

46 lines (31 loc) · 632 Bytes

Gittensor UI

Dashboard, analytics, miner evaluations for Gittensor, Subnet 74

Technologies

Node 20, React, Typescript, Docker

Local setup

Minimum Node version 20 required

Install packages

npm install

Set up .env file

This project reads variables from a .env file, set yours up by doing:

cp .env.example .env

# then edit the new .env file as you see fit
vim .env

Running the app

# development
npm run dev

Linting & Formatting

# Format all files
npm run format
# ESLint with auto-fix
npm run lint:fix
# Ensure the project builds cleanly
npm run build