A dashboard to manage your apps in Soketi.
- PHP 8.2+
- Node 18
- Soketi running with a MySQL or PostgreSQL app manager
Currently, you'll need to clone down the repo, and run:
n 18
composer install --no-dev
yarn
yarn build
Then you'll need to setup the standard laravel environment variables (mainly your database connection details).
Soketi UI won't create the apps table, so you'll need to create it before running migrations:
Finally, you can run migrations with:
php artisan migrate
If you're using docker, you can use the docker compose file to get running quickly.
You'll still need to run migrations manually, with the same steps as the above installation