Config files
Socket Server
{
development: {
port: 4000, // node server port
socket_secret: 'SOCKET SECRET',
redis: {
host: 'localhost',
port: 6379
}
},
production: {
port: 4000, // node server port
socket_secret: 'SOCKET SECRET',
redis: {
host: '<redis-host>',
port: 6379,
pass: '<redis-password>' // Optional, if the password for redis exists
}
},
staging: {
port: 4000, // node server port
socket_secret: 'SOCKET SECRET',
redis: {
host: '<redis-host>',
port: 6379,
pass: '<redis-password>' // Optional, if the password for redis exists
}
}
}API Server
Messenger App
Note
Last updated