This commit is contained in:
Chris Troutner
2025-02-23 11:25:50 -07:00
parent 69a3406bd8
commit 49f61ade1f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ export default {
ipfsTcpPort: process.env.IPFS_TCP_PORT ? process.env.IPFS_TCP_PORT : 5668, ipfsTcpPort: process.env.IPFS_TCP_PORT ? process.env.IPFS_TCP_PORT : 5668,
ipfsWsPort: process.env.IPFS_WS_PORT ? process.env.IPFS_WS_PORT : 5669, ipfsWsPort: process.env.IPFS_WS_PORT ? process.env.IPFS_WS_PORT : 5669,
ipfsWebRtcPort: process.env.IPFS_WEB_RTC_PORT ? process.env.IPFS_WEB_RTC_PORT : 5670, ipfsWebRtcPort: process.env.IPFS_WEB_RTC_PORT ? process.env.IPFS_WEB_RTC_PORT : 5670,
connectPref: process.env.CONNECT_PREF, // Used in helia-coord to select connection preference. connectPref: process.env.CONNECT_PREF, // Used in helia-coord to select connection preference.
// Settings for production, using external go-ipfs node. // Settings for production, using external go-ipfs node.
isProduction: process.env.SVC_ENV === 'prod' ? true : false, isProduction: process.env.SVC_ENV === 'prod' ? true : false,
+1 -1
View File
@@ -70,7 +70,7 @@ class RESTControllers {
// Attach the REST API Controllers associated with the /fulcrum route // Attach the REST API Controllers associated with the /fulcrum route
const bchRESTController = new BCHRESTController(dependencies) const bchRESTController = new BCHRESTController(dependencies)
bchRESTController.attach(app) bchRESTController.attach(app)
// Attach the REST API Controllers associated with the /usage route // Attach the REST API Controllers associated with the /usage route
const usageRESTController = new UsageRESTController(dependencies) const usageRESTController = new UsageRESTController(dependencies)
usageRESTController.attach(app) usageRESTController.attach(app)