Update app.py
Browse files
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",
|