fix(ipfs ports): Adding configurable ports use env vars

This commit is contained in:
Chris Troutner
2021-08-19 08:01:23 -07:00
parent 4a5103d760
commit 76e4feb1ac
+5 -1
View File
@@ -67,5 +67,9 @@ module.exports = {
name: 'Permissionless Software Foundation',
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
}