test_python / app.py
minhpng's picture
fix dockerfile permission denied
6e43888
raw
history blame
583 Bytes
import uvicorn
import os
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from routers import get_transcript
os.environ['HF_HOME'] = "./cached/"
app = FastAPI()
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["Content-Type", "Authorization", "x-api-key"])
app.include_router(get_transcript.router)
@app.get("/")
def read_root():
return {"message": "This is from python backend cache... test here"}
if __name__ == '__main__':
uvicorn.run(
"app:app", reload=True)