Toneye
This is a web-based Free TON Network blockchain explorer.
Supported languages:
- English
- Korean
Development Setup
Prerequisites
- Install Node.js which includes Node Package Manager
Quick Start
- Install packages:
npm install
- Buld the application:
Korean version:
ng build --configuration=dev-kor
English version:
ng build --configuration=dev
- Run dev server:
Korean version:
ng serve --configuration=dev-kor
English version:
ng server --configuration=dev
- Navigate to
http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Use prod
(English version) and prod-kor
(Korean version) configurations to build the application for production environment.
Server Installation
Requirements
- Docker Engine 19.03.0 or higher (How to install Docker)
- Docker Compose 1.25.5 or higer (How to install Docker Compose)
Installation
Docker CLI
docker pull insyscompany/toneye:release
docker run -it -p 8080:80 -p 8443:443 --detach --restart always --log-opt max-size=50m --name toneye insyscompany/toneye:release
Docker Compose CLI
docker-compose pull toneye
docker-compose up -d toneye
Build
Docker CLI
docker build . -t insyscompany/toneye:release
Docker Compose CLI
docker-compose build toneye