Skip to content

Dashboards

The topics and docker dashboards allow for detailled views on either property.

Here is some example code.

workflows:
  - name: hello-fastapi
    provider: bash
    ports: 1
    commands:
      - pip install fastapi uvicorn
      - uvicorn hello_fastapi:app --port $PORT_0 --host 0.0.0.0
   from fastapi import FastAPI

   app = FastAPI()


   @app.get("/")
   async def root():
       return {"message": "Hello World"}

NOTE:

Here is something important to note. Just like in the previous example, this is a note.