fix(config): Fixing env var setting

This commit is contained in:
Chris Troutner
2022-05-16 13:56:19 -07:00
parent 150e3d6799
commit 45ea47d4d0
+1 -1
View File
@@ -94,7 +94,7 @@ module.exports = {
: '',
// Settings for production, using external go-ipfs node.
isProduction: process.env.SVC_ENV === 'production' ? true : false,
isProduction: process.env.CONSUMER_ENV === 'production' ? true : false,
ipfsHost: process.env.IPFS_HOST ? process.env.IPFS_HOST : 'localhost',
ipfsApiPort: process.env.IPFS_API_PORT
? parseInt(process.env.IPFS_API_PORT)