Spaces:
Sleeping
Sleeping
File size: 260 Bytes
de6d7ed 52cb935 4ae4bf9 eb67630 de6d7ed | 1 2 3 4 5 6 7 8 9 10 11 12 | import sys
import os
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from app import app
def main():
import uvicorn
uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=False)
if __name__ == "__main__":
main() |