Skip to content

Commit

Permalink
fix server.py uncommented code
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomarin committed Jan 2, 2025
1 parent b70ee69 commit 956b2ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions apps/backend/fastapi/app/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@

##########################################################
## Uncomment this section to run locally
current_file = Path(__file__).resolve()
library_path = current_file.parents[4]
data_path = library_path / "data"
sys.path.append(str(library_path)) # ensure we can import "common" etc.
load_dotenv(str(library_path) + "/credentials.env")
csv_file_path = data_path / "all-states-history.csv"
api_file_path = data_path / "openapi_kraken.json"
# current_file = Path(__file__).resolve()
# library_path = current_file.parents[4]
# data_path = library_path / "data"
# sys.path.append(str(library_path)) # ensure we can import "common" etc.
# load_dotenv(str(library_path) + "/credentials.env")
# csv_file_path = data_path / "all-states-history.csv"
# api_file_path = data_path / "openapi_kraken.json"
##########################################################

# from the graph module
Expand Down
Binary file modified apps/backend/fastapi/backend.zip
Binary file not shown.

0 comments on commit 956b2ef

Please sign in to comment.