Skip to content

Commit c3d76a2

Browse files
authored
chore: explorer- update organisation name to sprinter (#240)
1 parent f1195e7 commit c3d76a2

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/deploy_mainnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: checkout ecs repo
4343
uses: actions/checkout@v4
4444
with:
45-
repository: sygmaprotocol/devops
45+
repository: sprintertech/devops
4646
token: ${{ secrets.GHCR_TOKEN }}
4747
ref: main
4848

.github/workflows/deploy_mainnet_api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: checkout ecs repo
4141
uses: actions/checkout@v4
4242
with:
43-
repository: sygmaprotocol/devops
43+
repository: sprintertech/devops
4444
token: ${{ secrets.GHCR_TOKEN }}
4545
ref: main
4646

.github/workflows/deploy_testnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: checkout ecs repo
7272
uses: actions/checkout@v4
7373
with:
74-
repository: sygmaprotocol/devops
74+
repository: sprintertech/devops
7575
token: ${{ secrets.GHCR_TOKEN }}
7676
ref: main
7777

.github/workflows/deploy_testnet_api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: checkout ecs repo
7474
uses: actions/checkout@v4
7575
with:
76-
repository: sygmaprotocol/devops
76+
repository: sprintertech/devops
7777
token: ${{ secrets.GHCR_TOKEN }}
7878
ref: main
7979

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ COPY --from=builder /app/node_modules ./node_modules
3434
COPY --from=builder /app/package*.json ./
3535
COPY --from=builder /app/build ./build
3636
COPY --from=builder /app/prisma ./prisma
37-
LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer
37+
LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer
3838
EXPOSE 8000
3939

4040
COPY start-prod.sh /start-prod.sh

Dockerfile.api

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ FROM node:18.15-alpine
3434
COPY --from=builder /app/node_modules ./node_modules
3535
COPY --from=builder /app/package*.json ./
3636
COPY --from=builder /app/build ./build
37-
LABEL org.opencontainers.image.source https://github.com/sygmaprotocol/sygma-explorer-indexer
37+
LABEL org.opencontainers.image.source https://github.com/sprintertech/sygma-explorer-indexer
3838
EXPOSE 8000
3939

4040
CMD [ "node", "./build/index.js"]

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.7'
22
services:
33
evm1:
4-
image: ghcr.io/sygmaprotocol/indexer-evm1:latest
4+
image: ghcr.io/sprintertech/indexer-evm1:latest
55
container_name: evm1
66
command: ganache-cli --chainId 1337 -d --db data/ --blockTime 2 > /dev/null
77
logging:
@@ -10,7 +10,7 @@ services:
1010
- "8545:8545"
1111

1212
evm2:
13-
image: ghcr.io/sygmaprotocol/indexer-evm2:latest
13+
image: ghcr.io/sprintertech/indexer-evm2:latest
1414
command: ganache-cli --chainId 1338 -d --db data/ --blockTime 2 > /dev/null
1515
container_name: evm2
1616
logging:
@@ -21,7 +21,7 @@ services:
2121
substrate-pallet:
2222
container_name: substrate-pallet
2323
command: ["--pruning=25000"]
24-
image: ghcr.io/sygmaprotocol/indexer-substrate:latest
24+
image: ghcr.io/sprintertech/indexer-substrate:latest
2525
ports:
2626
- "9944:9944"
2727
- "9933:9933"
@@ -80,7 +80,7 @@ services:
8080
dockerfile: ./Dockerfile
8181
restart: always
8282
environment:
83-
DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority
83+
DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer?replicaSet=my-replica-set&authSource=admin&retryWrites=true&w=majority
8484
SHARED_CONFIG_URL: https://ipfs.io/ipfs/bafkreiasnla2ya55of6nwm3swjstip4q2ixfa3t6tvixyibclfovxnerte
8585
RPC_URL_CONFIG: '[{"id": 1, "endpoint": "http://evm1:8545"}, {"id": 2, "endpoint": "http://evm2:8545"}, {"id": 3, "endpoint": "ws://substrate-pallet:9944"}]'
8686
RETRY_COUNT: '1'
@@ -91,6 +91,6 @@ services:
9191
context: .
9292
dockerfile: ./Dockerfile.api
9393
environment:
94-
DATABASE_URL: mongodb://mongo1:30001/sygmaprotocol-explorer-indexer
94+
DATABASE_URL: mongodb://mongo1:30001/sprintertech-explorer-indexer
9595
ports:
9696
- "8000:8000"

0 commit comments

Comments
 (0)