Fix auth token
Build, push image, and notify Watchtower / build-image (push) Successful in 1m19s
Build, push image, and notify Watchtower / notify (push) Successful in 18s

This commit is contained in:
2026-08-17 17:03:06 +02:00
parent 9d609a367b
commit d39c5c26e7
+1 -1
View File
@@ -6,7 +6,7 @@ def send_alert_sms(to_phone: str, room_title: str, room_link: str = None, client
Sends an SMS alert using Twilio notifying the client of an issue and support room creation.
"""
account_sid = os.environ.get("TWILIO_SID")
auth_token = os.environ.get("TWILIO_ACCOUNT_SECRET")
auth_token = os.environ.get("TWILIO_AUTH_TOKEN")
from_phone = os.environ.get("TWILIO_PHONE_NUMBER") # Requires your Twilio sender phone number
if not account_sid or not auth_token or not from_phone: