stellar-expert / stellar-expert-explorer

StellarExpert Explorer – block explorer and analytics platform for Stellar Network.
https://stellar.expert
MIT License
63 stars 32 forks source link

Stellar📡Expert

StellarExpert – block explorer and analytics platform for Stellar Network.

Links

API Server

Install dependencies

cd api
npm i

Configuration

All configuration parameters stored in app.config.json file.

Copy the template config file and edit parameters:

cp example.app.config.json app.config.json

Start

node api.js

(for verbose HTTP requests logging pass MODE=development environment variable)

Frontend

Install dependencies

cd ui
pnpm i

(requires PNPM package manager to be installed)

Configuration

All configuration parameters stored in app.config.json file.

Additional build options are located in webpack-config.js

Start the application in the development mode

pnpm dev-server

(check webpack dev-server output for the hot-reload browser link)

Build production bundle

pnpm build

(check for the generated files in the ./public repository)

Re-generate Open API docs

pnpm build-api-docs 

TBD