Skip to content

Commit

Permalink
Merge pull request #45 from tukcomCD2024/fix/#44-backend-fastapi-env
Browse files Browse the repository at this point in the history
Fix/#44 backend fastapi env
  • Loading branch information
yeonjy authored Mar 20, 2024
2 parents 191acaf + b9e577b commit 92cf1c8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions backend/ai_response_processor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/env
.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

from news.schema.message_item import MessageItem

load_dotenv()

CONFIG = {
'username': os.getenv('RABBITMQ_USERNAME'),
'password': os.getenv('RABBITMQ_PASSWORD'),
Expand Down
4 changes: 2 additions & 2 deletions backend/ai_response_processor/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ langchain==0.0.332
python-dotenv==1.0.0
openai==0.28.0
uvicorn==0.28.0
pika
fastapi
pika==1.3.2
fastapi==0.110.0

0 comments on commit 92cf1c8

Please sign in to comment.