Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Support mesh over http #35

Merged
merged 1 commit into from
Feb 28, 2020
Merged
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
3 changes: 3 additions & 0 deletions src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ services:${isGanache ? ganacheService : ''}
MAKER_FEE_UNIT_AMOUNT: '${options.makerFee}'
TAKER_FEE_UNIT_AMOUNT: '${options.takerFee}'
MESH_WEBSOCKET_URI: 'ws://mesh:60557'
MESH_HTTP_URI: 'http://mesh:60556'
POSTGRES_URI: 'postgresql://api:api@postgres/api'
ports:
- '3000:3000'
Expand All @@ -119,11 +120,13 @@ services:${isGanache ? ganacheService : ''}
VERBOSITY: 3
PRIVATE_KEY_PATH: ''
WS_RPC_ADDR: '0.0.0.0:60557'
HTTP_RPC_ADDR: '0.0.0.0:60556'
# You can decrease the BLOCK_POLLING_INTERVAL for test networks to
# improve performance. See https://0x-org.gitbook.io/mesh/ for more
# Documentation about Mesh and its environment variables.
BLOCK_POLLING_INTERVAL: '5s'
ports:
- '60556:60556'
- '60557:60557'
- '60558:60558'
- '60559:60559'
Expand Down