Skip to content

Commit

Permalink
Merge pull request #40 from vechain/39-fix-update-buildanddeploy-runner
Browse files Browse the repository at this point in the history
chore: update buildAndDeploy runner, update docs
  • Loading branch information
akanoce authored Jan 5, 2024
2 parents 9920629 + 4cc78a7 commit 18eb3e6
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
BuildAndDeploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest

steps:
- name: Checkout repository
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/push-docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Publish image to GHCR

on:
workflow_call:
release:
types: [published]
workflow_dispatch:
push:
branches:
- master

jobs:
build:
Expand Down
35 changes: 28 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,52 @@
# VeChain Insight

> Insight is a **serverless** VeChain explorer. It allows you to explore and search for blocks, transactions and accounts.
> Insight is a **serverless** VeChain explorer. It allows you to explore and search for blocks, transactions and accounts.
[Try it out!](https://insight.vecha.in/#/)

## Permanent links

* Main net - `https://insight.vecha.in/#/main/txs/{txid}`
* Test net - `https://insight.vecha.in/#/test/txs/{txid}`
- Main net - `https://insight.vecha.in/#/main/txs/{txid}`
- Test net - `https://insight.vecha.in/#/test/txs/{txid}`

## Screenshots

![Homepage](./screenshots/homepage-chrome-app.png)

## Project setup

### Install dependencies

```
npm install
yarn
```

### Compiles and hot-reloads for development
### Compiles with hot-reload for development

```
npm run serve
yarn serve
```

### Compiles and minifies for production

```
yarn build
```

## Build and run with Docker

```
docker build -t insight-app .
```

```
docker run -dp 127.0.0.1:8080:80 insight-app
```

or with docker compose

```
npm run build
docker compose up -d --build
```

## Contributing
Expand Down

0 comments on commit 18eb3e6

Please sign in to comment.