Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Warning! This Docker config is meant to be used for development and debugging, specially for running tests, not in prod.
services:
graph-node:
platform: linux/amd64
image: graphprotocol/graph-node:v0.25.0
ports:
- '8000:8000'
Expand All @@ -22,13 +23,15 @@ services:
RUST_LOG: info
GRAPH_ALLOW_NON_DETERMINISTIC_IPFS: 1
ipfs:
platform: linux/amd64
image: requestnetwork/request-ipfs:v0.13.0
ports:
- '5001:5001'
restart: on-failure:20
# volumes:
# - ./data/ipfs:/data/ipfs
ganache:
platform: linux/amd64
image: trufflesuite/ganache:v7.6.0
ports:
- 8545:8545
Expand All @@ -41,6 +44,7 @@ services:
- 'london'
restart: on-failure:20
postgres:
platform: linux/amd64
image: postgres
ports:
- '5432:5432'
Expand All @@ -51,6 +55,7 @@ services:
POSTGRES_DB: graph-node
restart: on-failure:20
graph-deploy:
platform: linux/amd64
build:
context: https://github.com/RequestNetwork/docker-images.git#main:request-subgraph-storage
dockerfile: ./Dockerfile
Expand Down
1 change: 1 addition & 0 deletions packages/payment-processor/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export * from './payment/prepared-transaction';
export * from './payment/utils-near';
export * from './payment/single-request-forwarder';
export * from './payment/erc20-recurring-payment-proxy';
export * from './payment/erc20-commerce-escrow-wrapper';

import * as utils from './payment/utils';

Expand Down
Loading
Loading