🦄
Bubbaloop
  • 🦄Bubbaloop
  • 🚀Quickstart
  • 💊Stats API
  • 🍰Pipeline API
  • Examples
    • 🌈Hello World
    • 📷Camera Recording
  • 🍄Model Inference (experimental)
  • Tutorials
    • Home Security App
Powered by GitBook
On this page
  • Start the server
  • Request to start the task
  • Stop the task
  1. Examples

Hello World

Your first Bubbaloop service experience

Start the server

just serve

Request to start the task

Send a HTTP request to the server to start the background task

just start-pipeline bubbaloop 0.0.0.0 3000

From the server side you will see the following

[2025-01-05T15:51:33Z DEBUG bubbaloop::pipeline] | Hello !! This is a Bubbaloop !!! 🎮
[2025-01-05T15:51:34Z DEBUG bubbaloop::pipeline] / Hello !! This is a Bubbaloop !!! 🌈
[2025-01-05T15:51:35Z DEBUG bubbaloop::pipeline] - Hello !! This is a Bubbaloop !!! 😊
[2025-01-05T15:51:36Z DEBUG bubbaloop::pipeline] \ Hello !! This is a Bubbaloop !!! 🚀
[2025-01-05T15:51:37Z DEBUG bubbaloop::pipeline] | Hello !! This is a Bubbaloop !!! 🦀
[2025-01-05T15:51:38Z DEBUG bubbaloop::pipeline] / Hello !! This is a Bubbaloop !!! 🎉

Stop the task

To stop the pipeline, use the stop-pipeline command:

just stop-pipeline bubbaloop 0.0.0.0 3000

From client

Result: {
  "message": "Pipeline bubbaloop stopped"
}

From server

[2025-01-05T15:51:39Z DEBUG bubbaloop::pipeline] Request to stop pipeline: bubbaloop
[2025-01-05T15:51:40Z DEBUG bubbaloop::pipeline] Pipeline bubbaloop stopped after 155 iterations
PreviousPipeline APINextCamera Recording

Last updated 1 month ago

🌈