Picarones / app.py
Claude
chore(audit): Phase 0 quick wins — entry point + numérotation couches
0c80c8c unverified
raw
history blame
201 Bytes
"""Point d'entrée HuggingFace Spaces — lance Picarones sur le port 7860."""
import uvicorn
if __name__ == "__main__":
uvicorn.run("picarones.interfaces.web.app:app", host="0.0.0.0", port=7860)