heymenn commited on
Commit
367af23
·
verified ·
1 Parent(s): 6986adb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -8,7 +8,11 @@ import re
8
  from src.core import *
9
  from src.ressources.main_css import *
10
 
11
-
 
 
 
 
12
  app = FastAPI(
13
  title="Insight Finder",
14
  description="Find relevant technologies from a problem",
 
8
  from src.core import *
9
  from src.ressources.main_css import *
10
 
11
+ from dotenv import load_dotenv
12
+ load_dotenv()
13
+ import os
14
+ BASE_DIR = Path(__file__).resolve().parent.parent
15
+ print(BASE_DIR)
16
  app = FastAPI(
17
  title="Insight Finder",
18
  description="Find relevant technologies from a problem",