fix(devops): 清理舊端口與危險 compose 操作
All checks were successful
CD Pipeline / deploy (push) Successful in 1m45s

This commit is contained in:
OoO
2026-04-30 14:24:53 +08:00
parent fb9c4ad1b5
commit d88dcc8f75
6 changed files with 18 additions and 25 deletions

View File

@@ -5,8 +5,10 @@
"""
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from pathlib import Path
PROJECT_ROOT = Path(__file__).resolve().parents[2]
sys.path.insert(0, str(PROJECT_ROOT))
from database.vendor_manager import VendorDatabaseManager
from database.vendor_models import EmailSendLog
@@ -78,7 +80,7 @@ def check_email_status():
print("=" * 80)
print("1. 登入收件信箱檢查yingpin_chen@pchome.tw")
print("2. 檢查垃圾郵件資料夾(第一次發送可能被誤判)")
print("3. 查看網頁記錄http://localhost:5888/vendor-stockout/send-email")
print("3. 查看網頁記錄http://localhost/vendor-stockout/send-email")
print("\n⚠️ 注意:")
print(" - 狀態「成功」= Gmail SMTP 已接收郵件")
print(" - 但不保證對方信箱一定收到(可能被退信或進垃圾桶)")