@echo off
REM run_daily.cmd — wrapper for Task Scheduler to set env vars + invoke Python.
REM Edit the two values below, then point Task Scheduler at this file.

set LINE_CHANNEL_ACCESS_TOKEN=REPLACE_WITH_YOUR_TOKEN
set LINE_BROADCAST_USER_ID=REPLACE_WITH_USER_OR_GROUP_ID

cd /d "%~dp0"
".venv\Scripts\python.exe" daily_word.py >> "%TEMP%\kruai_daily.out.log" 2>> "%TEMP%\kruai_daily.err.log"
