Debug
Build, push image, and notify Watchtower / build-image (push) Successful in 1m3s
Build, push image, and notify Watchtower / notify (push) Successful in 13s

This commit is contained in:
2026-08-17 17:06:01 +02:00
parent d39c5c26e7
commit 4234e1ed21
+2
View File
@@ -8,6 +8,8 @@ def send_alert_sms(to_phone: str, room_title: str, room_link: str = None, client
account_sid = os.environ.get("TWILIO_SID")
auth_token = os.environ.get("TWILIO_AUTH_TOKEN")
from_phone = os.environ.get("TWILIO_PHONE_NUMBER") # Requires your Twilio sender phone number
print(account_sid)
print(auth_token)
if not account_sid or not auth_token or not from_phone:
print("Twilio environment variables (TWILIO_SID, TWILIO_ACCOUNT_SECRET, TWILIO_PHONE_NUMBER) missing.")