https://github.com/joticajulian/koinosblocks
https://github.com/joticajulian/koinosblocks
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joticajulian/koinosblocks
- Owner: joticajulian
- License: mit
- Created: 2024-03-07T22:25:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-07T22:25:25.000Z (about 1 year ago)
- Last Synced: 2024-10-18T07:24:32.751Z (7 months ago)
- Language: Vue
- Size: 283 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# koinosblocks
Koinos blockchain explorer utilizing public RPC API without any custom backend.
# Development
To run the development server, first install required dependencies:
```shell
yarn install
```And them run the development server:
```shell
yarn run dev
```Your application will be available at http://localhost:5173
# Docker
You can also run dockerized version of the application (build for production). You can build locally with:
```shell
docker build -t koinosblocks .
```And then run it with:
```shell
docker run -p 80:80 koinosblocks
```Your application will be available at http://localhost:80
You can also pull the image from gitlab docker registry:
```shell
docker pull registry.gitlab.com/engrave/koinos/koinosblocks:latest
```And then run it with:
```shell
docker run -p 80:80 registry.gitlab.com/engrave/koinos/koinosblocks:latest
```
# LicenseMIT