14 lines
317 B
Python
14 lines
317 B
Python
"""
|
|
Session Management Service for Lovdata Chat - Entry Point
|
|
|
|
Run with: python main.py
|
|
Or: uvicorn app:app --reload --host 0.0.0.0 --port 8000
|
|
"""
|
|
|
|
import uvicorn
|
|
|
|
from app import app # noqa: F401 - exported for uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("app:app", host="0.0.0.0", port=8000, reload=True)
|