Skip to content

Commit

Permalink
Integrating new functional backend
Browse files Browse the repository at this point in the history
  • Loading branch information
neal-logan committed Nov 24, 2024
1 parent 6afdf84 commit a65243d
Show file tree
Hide file tree
Showing 9 changed files with 477 additions and 240 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 8000
CMD ["uvicorn", "main:app","--port","8000","--host","localhost"]
EXPOSE 8001
CMD ["uvicorn", "main:app","--host","0.0.0.0","--port","8001"]
5 changes: 2 additions & 3 deletions MinuteMate/back/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ services:
context: ./
dockerfile: Dockerfile
ports:
- 8000:8000
- 8001:8001
environment:
- WEAVIATE_ENDPOINT_URL=$WEAVIATE_ENDPOINT_URL
- WEAVIATE_API_KEY=$WEAVIATE_API_KEY
- OPENAI_API_KEY=$OPENAI_API_KEY

- OPENAI_API_KEY=$OPENAI_API_KEY
Loading

0 comments on commit a65243d

Please sign in to comment.