Skip to content

Commit 462ae79

Browse files
committed
fix
1 parent 99e12de commit 462ae79

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ venv
33
node_modules
44
.DS_Store
55
*.pyc
6-
6+
.env.local
77
# General
88
.DS_Store
99
Thumbs.db
1010
*.log
1111
logs/
1212
.env
13-
.env.*
1413
__pycache__/
1514

1615
# Python (FastAPI backend)
@@ -44,6 +43,7 @@ node_modules/
4443
npm-debug.log*
4544
yarn-debug.log*
4645
yarn-error.log*
46+
*.local
4747

4848
# Next.js build output
4949
.next/

backend/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
app.add_middleware(
88
CORSMiddleware,
9-
allow_origins=["http://localhost:3000"
9+
allow_origins=["http://localhost:3000",
1010
"https://jobs-chatbot.vercel.app"],
1111
allow_credentials=True,
1212
allow_methods=["*"],

0 commit comments

Comments
 (0)