Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions services/blog/app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ class Settings(BaseSettings):
USER_SERVICE_URL: str = "http://user_service:8002"

# Cloudinary
CLOUDINARY_CLOUD_NAME: str = ""
CLOUDINARY_API_KEY: str = ""
CLOUDINARY_API_SECRET: str = ""
CLOUDINARY_CLOUD_NAME: str
CLOUDINARY_API_KEY: str
CLOUDINARY_API_SECRET: str

class Config:
env_file = ".env"
Expand Down
6 changes: 3 additions & 3 deletions services/produce/app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ class Settings(BaseSettings):
INTERNAL_SECRET: str
USER_SERVICE_URL: str = "http://user_service:8002"
REDIS_URL: str = "redis://redis:6379/0"
CLOUDINARY_CLOUD_NAME: str = ""
CLOUDINARY_API_KEY: str = ""
CLOUDINARY_API_SECRET: str = ""
CLOUDINARY_CLOUD_NAME: str
CLOUDINARY_API_KEY: str
CLOUDINARY_API_SECRET: str
ML_GATEWAY_URL: str = "" # Set to http://ml-gateway:8000 when ML stack is running
NOTIFICATION_SERVICE_URL: str = "http://notification_service:8007"

Expand Down
Loading