Skip to content

Commit

Permalink
Fixed module imports
Browse files Browse the repository at this point in the history
- successfully ran local backend + streamlit
- .gitignore ignores venv files and .env files
  • Loading branch information
Mikonooooo committed Sep 14, 2023
1 parent 37c84a9 commit 8934cb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
venv
.env
__pycache__
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ tzdata==2023.3
fastapi>=0.92.0
uvicorn==0.22.0
python-multipart==0.0.6

boto3
python-dotenv==1.0.0
requests
opencv-python==4.7.0.72

Expand Down
1 change: 1 addition & 0 deletions src/api/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from fastapi.responses import StreamingResponse
import pandas as pd
import boto3
import os
from dotenv import load_dotenv

# Amazon S3 Connection
Expand Down

0 comments on commit 8934cb6

Please sign in to comment.