Add dashboard for graph-node subgraphs #832

Merged
ashwin merged 12 commits from deep-stack/stack-orchestrator:ng-graph-node-dashboard into main 2024-06-04 07:21:29 +00:00
4 changed files with 11 additions and 11 deletions
Showing only changes of commit 1d606d3850 - Show all commits

View File

@ -1,19 +1,19 @@
FROM node:18.16.0-alpine3.16
RUN apk --update --no-cache add git python3 alpine-sdk
RUN apk --update --no-cache add git python3 alpine-sdk jq
WORKDIR /app
COPY . .
# Get the latest Git commit hash and set in package.json of all watchers
# Get the latest Git commit hash and set it in package.json of all watchers
RUN COMMIT_HASH=$(git rev-parse HEAD) && \
find . -name 'package.json' -exec sh -c '
for packageFile; do
jq --arg commitHash "$0" ".commitHash = \$commitHash" "$packageFile" > "$packageFile.tmp" &&
mv "$packageFile.tmp" "$packageFile"
done
' sh "$COMMIT_HASH" {} \;
find . -name 'package.json' -exec sh -c ' \
for packageFile; do \
jq --arg commitHash "$0" ".commitHash = \$commitHash" "$packageFile" > "$packageFile.tmp" && \
mv "$packageFile.tmp" "$packageFile"; \
done \
' "$COMMIT_HASH" {} \;
RUN echo "Building azimuth-watcher-ts" && \
yarn && yarn build

View File

@ -1,7 +1,7 @@
version: "1.0"
name: azimuth
repos:
- github.com/cerc-io/azimuth-watcher-ts@v0.1.4
- github.com/cerc-io/azimuth-watcher-ts@0.1.5
containers:
- cerc/watcher-azimuth
pods:

View File

@ -2,7 +2,7 @@ version: "1.0"
name: merkl-sushiswap-v3
description: "SushiSwap v3 watcher stack"
repos:
- github.com/cerc-io/merkl-sushiswap-v3-watcher-ts@v0.1.11
- github.com/cerc-io/merkl-sushiswap-v3-watcher-ts@v0.1.12
containers:
- cerc/watcher-merkl-sushiswap-v3
pods:

View File

@ -2,7 +2,7 @@ version: "1.0"
name: sushiswap-v3
description: "SushiSwap v3 watcher stack"
repos:
- github.com/cerc-io/sushiswap-v3-watcher-ts@v0.1.11
- github.com/cerc-io/sushiswap-v3-watcher-ts@v0.1.12
containers:
- cerc/watcher-sushiswap-v3
pods: