Skip to content

Commit

Permalink
Changed port to 8000
Browse files Browse the repository at this point in the history
  • Loading branch information
neal-logan committed Dec 12, 2024
1 parent 1fc3f1b commit e3d365b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MinuteMate/back/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 8001
CMD ["uvicorn", "main:app","--host","0.0.0.0","--port","8001"]
EXPOSE 8000
CMD ["uvicorn", "main:app","--host","0.0.0.0","--port","8000"]
2 changes: 1 addition & 1 deletion MinuteMate/front/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def display_chat_messages() -> None:
try:
# Make API call to backend
response = requests.post(
"http://host.docker.internal:8001/process-prompt", # Adjust URL as needed
"http://host.docker.internal:8000/process-prompt", # Adjust URL as needed
json={"user_prompt_text": prompt}
)

Expand Down

0 comments on commit e3d365b

Please sign in to comment.