Skip to content

Commit a614020

Browse files
author
user
committed
Make database an absolute path and add missing requirements to file
1 parent 751987f commit a614020

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

backend/app/services/topic_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TopicService:
1313
}
1414

1515
def __init__(self):
16-
db_path = '../../public/data/github_meta.duckdb'
16+
db_path = '/home/user/projects/deepgit/public/data/github_meta.duckdb'
1717

1818
# Check if database exists
1919
if os.path.exists(db_path):

backend/requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ google-generativeai
55
openai
66
fastapi
77
uvicorn
8-
kaggle>=1.5.16
8+
kaggle>=1.5.16
9+
numpy
10+
pandas

0 commit comments

Comments
 (0)