You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
explorer-v2-frontend/README.md

45 lines
770 B

# Harmony Explorer frontend
3 years ago
## Requirements
3 years ago
### Node.js 16.13.2 LTS
Download and install Node.js from the official website: [https://nodejs.org/](https://nodejs.org/)
3 years ago
### yarn 1.22.17
3 years ago
```
npm install --global yarn
```
3 years ago
## Dev Environment
3 years ago
### First Install
3 years ago
1) Clone repo:
3 years ago
```bash
git clone https://github.com/harmony-one/explorer-v2-frontend.git
```
2) Install dependencies:
```bash
cd explorer-v2-frontend
yarn install
```
3) Run project:
```bash
yarn start
```
4) Open app page http://localhost:3000/
3 years ago
### Configuring app
3 years ago
1) Create a new file: `.env.local`
2) Copy env variables from `.env.example` to newly created file `.env.local`
3) Setup custom env variables values and restart the app
3 years ago
### Build
To create production build run command:
```
yarn build
```