Skip to content

Commit

Permalink
chore: explorer- update organisation name to sprinter (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
eedygreen authored Jan 14, 2025
1 parent f1195e7 commit c3d76a2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_mainnet_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_testnet_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: checkout ecs repo
uses: actions/checkout@v4
with:
repository: sygmaprotocol/devops
repository: sprintertech/devops
token: ${{ secrets.GHCR_TOKEN }}
ref: main

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/build ./build
COPY --from=builder /app/prisma ./prisma
LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer
LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer
EXPOSE 8000

COPY start-prod.sh /start-prod.sh
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.api
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ FROM node:18.15-alpine
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/build ./build
LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer
LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer
EXPOSE 8000

CMD [ "node", "./build/index.js"]
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.7'
services:
evm1:
image: ghcr.io/sygmaprotocol/indexer-evm1:latest
image: ghcr.io/sprintertech/indexer-evm1:latest
container_name: evm1
command: ganache-cli --chainId 1337 -d --db data/ --blockTime 2 > /dev/null
logging:
Expand All @@ -10,7 +10,7 @@ services:
- "8545:8545"

evm2:
image: ghcr.io/sygmaprotocol/indexer-evm2:latest
image: ghcr.io/sprintertech/indexer-evm2:latest
command: ganache-cli --chainId 1338 -d --db data/ --blockTime 2 > /dev/null
container_name: evm2
logging:
Expand All @@ -21,7 +21,7 @@ services:
substrate-pallet:
container_name: substrate-pallet
command: ["--pruning=25000"]
image: ghcr.io/sygmaprotocol/indexer-substrate:latest
image: ghcr.io/sprintertech/indexer-substrate:latest
ports:
- "9944:9944"
- "9933:9933"
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
dockerfile: ./Dockerfile
restart: always
environment:
DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority
DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority
SHARED_CONFIG_URL: https://ipfs.io/ipfs/bafkreiasnla2ya55of6nwm3swjstip4q2ixfa3t6tvixyibclfovxnerte
RPC_URL_CONFIG: '[{"id": 1, "endpoint": "http://evm1:8545"}, {"id": 2, "endpoint": "http://evm2:8545"}, {"id": 3, "endpoint": "ws://substrate-pallet:9944"}]'
RETRY_COUNT: '1'
Expand All @@ -91,6 +91,6 @@ services:
context: .
dockerfile: ./Dockerfile.api
environment:
DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer
DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer
ports:
- "8000:8000"

0 comments on commit c3d76a2

Please sign in to comment.