#!/usr/bin/env bash

uvicorn \
    --host 0.0.0.0 \
    --port 8000 \
    --timeout-graceful-shutdown 1 \
    arq_http.server:app
