"""Start PraisonAI recipe runner with default (insecure) config.

Default config has auth=none, allow_any_github=True, no rate limiting on
/v1/recipes/run. Mirrors a deployment that exposes the runner on a port
without further hardening.

    pip install 'praisonai[serve]'
    python server.py
"""
import uvicorn
from praisonai.recipe.serve import create_app

if __name__ == "__main__":
    app = create_app({})  # Empty config → all defaults → no auth
    uvicorn.run(app, host="127.0.0.1", port=8765, log_level="info")
