Skip to content

Commit

Permalink
Work around readme and other documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
kukabi committed Sep 18, 2023
1 parent 4ac7453 commit 75c896a
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
.vscode
/dist/client/bundle.js
/dist/client/bundle.js.LICENSE.txt
.DS_Store
docker
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<p align="center">
<img width="600" src="https://raw.githubusercontent.com/helikon-labs/chainviz-v1/development/readme-files/chainviz-logo.png">
<img width="600" src="https://raw.githubusercontent.com/helikon-labs/chainviz/main/readme-files/chainviz-logo.png">
</p>

![](https://github.com/helikon-labs/chainviz-v1/actions/workflows/prettier_eslint.yml/badge.svg)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=helikon-labs_chainviz-v1&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=helikon-labs_chainviz)

ChainViz ([alpha.chainviz.app](https://v1.chainviz.app)) is a real-time 3D chain visualization of the Polkadot machine.
[Chainviz](https://chainviz.app) is a real-time 3D chain visualization of the Polkadot machinery.

Please view the [alpha version](https://alpha.chainviz.app) repository [here](https://github.com/helikon-labs/chainviz).
<p align="center">
<a href="https://chainviz.app" target="_blank"><img width="100%" src="https://raw.githubusercontent.com/helikon-labs/chainviz/main/readme-files/chainviz-v1-screenshot-01.png"></a>
</p>

<!--p align="center">
<a href="https://alpha.chainviz.app" target="_blank"><img width="100%" src="https://raw.githubusercontent.com/helikon-labs/chainviz/development/readme_files/screenshot_01.png"></a>
</p-->
Please view the [alpha version](https://alpha.chainviz.app) repository [here](https://github.com/helikon-labs/chainviz).

---

Expand Down
Empty file added RUN.md
Empty file.
Empty file added TEST.md
Empty file.
2 changes: 1 addition & 1 deletion dist/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
const express_1 = __importDefault(require('express'));
const path_1 = __importDefault(require('path'));
const http_1 = __importDefault(require('http'));
const port = 3000;
const port = 8080;
class App {
constructor(tcpPort) {
this.port = tcpPort;
Expand Down
7 changes: 7 additions & 0 deletions docker/chainviz.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM node:18.17.1-bookworm-slim
WORKDIR /usr/src/app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 8080
CMD [ "node", "dist/server/server.js" ]
1 change: 1 addition & 0 deletions docker/docker-build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docker build -t helikon/chainviz:1.0.0 --no-cache -f ./chainviz.dockerfile ..
Binary file added readme-files/chainviz-v1-screenshot-01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed readme-files/screenshot_01.png
Binary file not shown.

0 comments on commit 75c896a

Please sign in to comment.