提交 c7dd2070 编写于 作者: I iftaken

fixs CORS Error

上级 8ed8c9c1
...@@ -17,6 +17,7 @@ from typing import List ...@@ -17,6 +17,7 @@ from typing import List
import uvicorn import uvicorn
from fastapi import FastAPI from fastapi import FastAPI
from starlette.middleware.cors import CORSMiddleware
from prettytable import PrettyTable from prettytable import PrettyTable
from ..executor import BaseExecutor from ..executor import BaseExecutor
...@@ -33,6 +34,12 @@ __all__ = ['ServerExecutor', 'ServerStatsExecutor'] ...@@ -33,6 +34,12 @@ __all__ = ['ServerExecutor', 'ServerStatsExecutor']
app = FastAPI( app = FastAPI(
title="PaddleSpeech Serving API", description="Api", version="0.0.1") title="PaddleSpeech Serving API", description="Api", version="0.0.1")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"])
@cli_server_register( @cli_server_register(
name='paddlespeech_server.start', description='Start the service') name='paddlespeech_server.start', description='Start the service')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册