#!/bin/bash export PYTHONPATH=$PYTHONPATH:$(pwd) echo "Starting Log Center on port 8002..." uvicorn app.main:app --host 0.0.0.0 --port 8002 --reload