mirror of
https://github.com/TheSmallHanCat/sora2api.git
synced 2026-02-03 17:54:46 +08:00
13 lines
247 B
Python
13 lines
247 B
Python
"""Application launcher script"""
|
|
import uvicorn
|
|
from src.core.config import config
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(
|
|
"src.main:app",
|
|
host=config.server_host,
|
|
port=config.server_port,
|
|
reload=False
|
|
)
|
|
|