This is a sample Laravel 10 application with example workflows that you can run inside a GitHub codespace.
Run the migrations to create the necessary database tables.
php artisan migrate
Start the queue worker. This will enable the processing of workflows and activities.
php artisan queue:work
Create a new terminal window.
Start the example workflow inside the new terminal window.
php artisan workflow
You can view the waterline dashboard via the mapped port.
Add /waterline/dashboard
to the URL e.g. https://[your-project-name]/waterline/dashboard
That's it! You can now create and test workflows.