Picarones / app.py
Claude
feat: ajout du support HuggingFace Spaces (port 7860, front matter, app.py)
a25f0d4 unverified
raw
history blame contribute delete
190 Bytes
"""Point d'entrée HuggingFace Spaces — lance Picarones sur le port 7860."""
import uvicorn
if __name__ == "__main__":
uvicorn.run("picarones.web.app:app", host="0.0.0.0", port=7860)