fix(startup): Subscribing to chat pubsub channel at startup

This commit is contained in:
Chris Troutner
2022-05-26 09:12:15 -07:00
parent da62f1bbe3
commit 324c372119
4 changed files with 23 additions and 1 deletions
+3 -1
View File
@@ -85,5 +85,7 @@ module.exports = {
ipfsHost: process.env.IPFS_HOST ? process.env.IPFS_HOST : 'localhost',
ipfsApiPort: process.env.IPFS_API_PORT
? parseInt(process.env.IPFS_API_PORT)
: 5001
: 5001,
chatPubSubChan: 'psf-ipfs-chat-001'
}