Syncing with upstream ipfs-service-provider. Fixing merge conflicts

This commit is contained in:
Chris Troutner
2025-02-23 11:25:20 -07:00
24 changed files with 5259 additions and 5786 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ RUN git clone https://github.com/Permissionless-Software-Foundation/ipfs-bch-wal
WORKDIR /home/safeuser/ipfs-bch-wallet-service
# For development: switch to unstable branch
RUN git checkout ct-unstable
RUN git checkout master
# Install dependencies
#RUN npm install -g @mapbox/node-pre-gyp
+6 -3
View File
@@ -26,9 +26,12 @@ services:
links:
- mongo-bch-service
ports:
- '5032:5032' # <host port>:<container port>
- '5668:5668'
- '5669:5669'
# <host port>:<container port>
- '5032:5032' # REST API
- '5668:5668' # TCP
- '5669:5669' # Websockets
- '5670:5670' # WebRTC
volumes:
- ../data/ipfsdata:/home/safeuser/ipfs-bch-wallet-service/.ipfsdata
- ./start-production.sh:/home/safeuser/ipfs-bch-wallet-service/start-production.sh
+6
View File
@@ -40,9 +40,15 @@ export IPFS_HOST=172.17.0.1
export IPFS_API_PORT=5001
export IPFS_TCP_PORT=5668
export IPFS_WS_PORT=5669
export IPFS_WEB_RTC_PORT=5670
# Set the debug level for helia-coord. 0-3.
# 0 = no debug logs. 3 = maximum debug logs.
export DEBUG_LEVEL=0
# Use this if the IPFS node has a publically accessible IP address.
#export CONNECT_PREF=direct
# Use this if the IPFS node is behind a NAT or Firewall and cannot be accessed directly.
export CONNECT_PREF=cr
npm start