Just set it up myself. Both on docker (dev) and ploi (Ubuntu server). I used the array config. How are you going to run it?
For my production server I set it up using a json file and ran it with
soketi start --config=/path/to/file.json
I am trying to replace pusher with Soketi currently i am stuck on Apps still unable to figure out how to define apps via sql or array driver.
https://docs.soketi.app/app-management/introduction
Thanks
After lot of searching this is the correct way to achieve multiple apps in soketi with ARRAY as driver.
file.json should be
{
"appManager.array.apps": [
{
"id": "app-id",
"key": "app-key",
"secret": "app-secret",
"maxConnections": -1,
"enableClientMessages": false,
"enabled": true,
"maxBackendEventsPerSecond": -1,
"maxClientEventsPerSecond": -1,
"maxReadRequestsPerSecond": -1,
"webhooks": []
},
{
"id": "app-id-two",
"key": "app-key-two",
"secret": "app-secret-two",
"maxConnections": -1,
"enableClientMessages": false,
"enabled": true,
"maxBackendEventsPerSecond": -1,
"maxClientEventsPerSecond": -1,
"maxReadRequestsPerSecond": -1,
"webhooks": []
}
]
}
Please or to participate in this conversation.