Files
api_utils_converse_v2/run_mail_sync.sh
T
2025-01-18 13:14:01 +05:30

10 lines
248 B
Bash

#!/bin/bash
# Use this to run the microservice without any docker setup.
source .venv/bin/activate
python3 "$(pwd)/cron/message/mail/auto_sync.py" --script-id "kps_cnv_KBC3MoaU" --batch-size 25 --debug &
deactivate
# All done:
echo "Done!"
exit 0