Meta / server /app.py
Nothing12Man's picture
fix: standardized server entry point with callable main function
5322eaf
raw
history blame contribute delete
150 Bytes
from backend.app.main import app
import uvicorn
def main():
uvicorn.run(app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()