"""Development server. This server is intended for development only: it enables debugging tools, and use a different port (5000) so it can more easily interface with other applications. Launching the server is relatively easy:: $ uv sync $ uv run python dev.py """ import os import uvicorn if __name__ == "__main__": port = int(os.getenv("PORT", 5000)) uvicorn.run( "marketing_intelligence.api.main:app", host="127.0.0.1", port=port, reload=True )