Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/insys-company/toneye
Web-based blockchain explorer for Free TON network
https://github.com/insys-company/toneye
freeton freeton-explorer ton ton-explorer
Last synced: 3 months ago
JSON representation
Web-based blockchain explorer for Free TON network
- Host: GitHub
- URL: https://github.com/insys-company/toneye
- Owner: insys-company
- License: gpl-3.0
- Created: 2020-10-12T06:46:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-06T19:14:55.000Z (about 4 years ago)
- Last Synced: 2024-07-30T20:55:27.011Z (6 months ago)
- Topics: freeton, freeton-explorer, ton, ton-explorer
- Language: TypeScript
- Homepage: https://toneye.app
- Size: 940 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Toneye
[Live Demo (Korean)](http://toneye.app/)[Live Demo (English)](http://en.toneye.app/)
This is a web-based Free TON Network blockchain explorer.
Supported languages:
- English
- Korean## Development Setup
### Prerequisites
- Install [Node.js](https://nodejs.org/) which includes [Node Package Manager](https://www.npmjs.com/get-npm)
### Quick Start
1. Install packages:
```
npm install
```
2. Buld the application:Korean version:
```
ng build --configuration=dev-kor
```English version:
```
ng build --configuration=dev
```
3. Run dev server:Korean version:
```
ng serve --configuration=dev-kor
```English version:
```
ng server --configuration=dev
```
4. 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](https://docs.docker.com/engine/install/))
- Docker Compose 1.25.5 or higer ([How to install Docker Compose](https://docs.docker.com/compose/install/))### 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
```