Spaces:
Running
Running
File size: 292 Bytes
ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 2a724ad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import logging
from openmusic_analysis.api import create_app
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(levelname)s] %(name)s: %(message)s",
)
app = create_app()
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)
|