Spaces:
Sleeping
Sleeping
msmhmorsi
commited on
Commit
·
c4db682
1
Parent(s):
21bda7d
allow all origins
Browse files- __pycache__/app.cpython-311.pyc +0 -0
- app.py +2 -1
__pycache__/app.cpython-311.pyc
CHANGED
Binary files a/__pycache__/app.cpython-311.pyc and b/__pycache__/app.cpython-311.pyc differ
|
|
app.py
CHANGED
@@ -7,7 +7,8 @@ app = FastAPI()
|
|
7 |
|
8 |
app.add_middleware(
|
9 |
CORSMiddleware,
|
10 |
-
allow_origins=["https://ancient-time-545042.framer.app"],
|
|
|
11 |
allow_credentials=True,
|
12 |
allow_methods=["*"],
|
13 |
allow_headers=["*"],
|
|
|
7 |
|
8 |
app.add_middleware(
|
9 |
CORSMiddleware,
|
10 |
+
# allow_origins=["https://ancient-time-545042.framer.app"],
|
11 |
+
allow_origins=["*"],
|
12 |
allow_credentials=True,
|
13 |
allow_methods=["*"],
|
14 |
allow_headers=["*"],
|