Skip to content

Commit 596f07c

Browse files
author
Self-Healing CI
committed
fix address
1 parent 0ec935c commit 596f07c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# API 설정 (.env 파일로 복사 후 수정)
22

33
# CORS
4-
ALLOWED_ORIGINS=http://5.104.87.242:3000
4+
ALLOWED_ORIGINS=https://koala.ai.kr
55

66
# 구독 이메일 발송 (Gmail 기준)
77
# Gmail 앱 비밀번호: https://myaccount.google.com/apppasswords
@@ -12,7 +12,7 @@ SMTP_PASSWORD=your-app-password
1212

1313
# 블로그/API URL
1414
BLOG_URL=https://koala.ai.kr
15-
API_URL=http://5.104.87.242:8000
15+
API_URL=https://api.koala.ai.kr
1616

1717
# 새 글 알림 API 키 (blog deploy workflow에서 사용)
1818
NOTIFY_API_KEY=your-secret-notify-key

routes/subscribe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SMTP_USER = os.environ.get("SMTP_USER", "")
2020
SMTP_PASSWORD = os.environ.get("SMTP_PASSWORD", "")
2121
BLOG_URL = os.environ.get("BLOG_URL", "https://koala.ai.kr")
22-
API_URL = os.environ.get("API_URL", "http://5.104.87.242:8000")
22+
API_URL = os.environ.get("API_URL", "https://api.koala.ai.kr")
2323
NOTIFY_API_KEY = os.environ.get("NOTIFY_API_KEY", "")
2424

2525

0 commit comments

Comments
 (0)