Skip to content

Commit

Permalink
chore: 추천 시스템관련 요청 엔드포인트를 속성 값에 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JadeKim042386 committed Aug 14, 2024
1 parent 43c4329 commit 7f71695
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docker-compose-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,12 @@ services:
- API_KEY=${API_KEY}
- WEBHOOK_SLACK_URL=${WEBHOOK_SLACK_URL}
- REC_SYS_HOST=${REC_SYS_HOST}
- REC_PRODUCT_ENDPOINT=${REC_PRODUCT_ENDPOINT}
- PROFILE_ENDPOINT=${PROFILE_ENDPOINT}
- REC_PRODUCT_PURCHASE=${REC_PRODUCT_PURCHASE}
- REC_AUCTION_PURCHASE=${REC_AUCTION_PURCHASE}
- RECOMMEND_PRODUCT=${RECOMMEND_PRODUCT}
- REC_PRODUCT_LIMIT=${REC_PRODUCT_LIMIT}
- RECOMMEND_AUCTION=${RECOMMEND_AUCTION}
- REC_LIMIT=${REC_LIMIT}
ports:
- "8080:8080"
- "8090:8090"
Expand Down
4 changes: 3 additions & 1 deletion src/main/resources/application-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ webhook:

rec-sys:
host: ${REC_SYS_HOST}
product-endpoint: ${REC_PRODUCT_ENDPOINT}
profile-endpoint: ${PROFILE_ENDPOINT}
product-purchase: ${REC_PRODUCT_PURCHASE}
auction-purchase: ${REC_AUCTION_PURCHASE}
recommend-product: ${RECOMMEND_PRODUCT}
recommend-auction: ${RECOMMEND_AUCTION}
product-limit: ${REC_PRODUCT_LIMIT}

0 comments on commit 7f71695

Please sign in to comment.