Skip to content

Commit 811dc2a

Browse files
committed
Update CORS
1 parent cdb9c25 commit 811dc2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

matching-service/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
app = FastAPI(title="Matching Service API")
88

99
origins = [
10-
"http://localhost:3000",
10+
"*",
1111
]
1212

1313
app.add_middleware(

question-service/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
app = FastAPI(title="Question Service API")
88

99
origins = [
10-
"http://localhost:3000",
10+
"*",
1111
]
1212

1313
app.add_middleware(

0 commit comments

Comments
 (0)