File size: 190 Bytes
a25f0d4
 
 
 
 
1
2
3
4
5
6
"""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)