Initial commit: Lunch Notifier source from server

This commit is contained in:
mattie726 2026-08-25 22:53:07 -07:00 committed by Barely Removable
commit b568287528
9 changed files with 878 additions and 0 deletions

26
.env.example Normal file
View file

@ -0,0 +1,26 @@
# Copy this to .env and fill in your values
# --- Required ---
# 10-digit phone number (no + or country code)
PHONE_NUMBER=4805405363
# Your carrier's SMS email gateway
# Verizon: vtext.com | T-Mobile: tmomail.net | AT&T: txt.att.net | Cricket: sms.cricketwireless.net
CARRIER_GATEWAY=vtext.com
# Gmail address to send from
GMAIL_USER=you@gmail.com
# Gmail App Password (myaccount.google.com → Security → App passwords)
# Remove spaces from the 16-char code
GMAIL_APP_PASSWORD=xxxxxxxxxxxxxxxxxxxx
# --- Optional ---
# Time to send the text each day (24-hour HH:MM, container timezone)
RUN_TIME=07:00
# Days to run (comma-separated: mon,tue,wed,thu,fri,sat,sun)
RUN_DAYS=mon,tue,wed,thu,fri
# HTTP trigger server port
PORT=2323