We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e12de commit 462ae79Copy full SHA for 462ae79
.gitignore
@@ -3,14 +3,13 @@ venv
3
node_modules
4
.DS_Store
5
*.pyc
6
-
+.env.local
7
# General
8
9
Thumbs.db
10
*.log
11
logs/
12
.env
13
-.env.*
14
__pycache__/
15
16
# Python (FastAPI backend)
@@ -44,6 +43,7 @@ node_modules/
44
43
npm-debug.log*
45
yarn-debug.log*
46
yarn-error.log*
+*.local
47
48
# Next.js build output
49
.next/
backend/app/main.py
@@ -6,7 +6,7 @@
app.add_middleware(
CORSMiddleware,
- allow_origins=["http://localhost:3000"
+ allow_origins=["http://localhost:3000",
"https://jobs-chatbot.vercel.app"],
allow_credentials=True,
allow_methods=["*"],
0 commit comments