mirror of
https://github.com/Permissionless-Software-Foundation/ipfs-bch-wallet-service.git
synced 2026-09-21 16:52:03 -07:00
Merge pull request #20 from Permissionless-Software-Foundation/ct-unstable
fix(ipfs ports): Adding configurable ports use env vars
This commit is contained in:
@@ -39,6 +39,7 @@ This project covers basic necessities of most APIs.
|
|||||||
```bash
|
```bash
|
||||||
git clone https://github.com/Permissionless-Software-Foundation/ipfs-service-provider
|
git clone https://github.com/Permissionless-Software-Foundation/ipfs-service-provider
|
||||||
cd ipfs-service-provider
|
cd ipfs-service-provider
|
||||||
|
sudo npm install -g node-pre-gyp
|
||||||
npm install
|
npm install
|
||||||
npm start
|
npm start
|
||||||
```
|
```
|
||||||
|
|||||||
Vendored
+5
-1
@@ -67,5 +67,9 @@ module.exports = {
|
|||||||
name: 'Permissionless Software Foundation',
|
name: 'Permissionless Software Foundation',
|
||||||
url: 'https://PSFoundation.cash'
|
url: 'https://PSFoundation.cash'
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
|
||||||
|
// IPFS Ports
|
||||||
|
ipfsTcpPort: process.env.IPFS_TCP_PORT ? process.env.IPFS_TCP_PORT : 4001,
|
||||||
|
ipfsWsPort: process.env.IPFS_WS_PORT ? process.env.IPFS_WS_PORT : 4003
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user