(20260119) Instructions updated to show how to run the scripts, and convenient bash scripts added.

This commit is contained in:
2026-01-19 16:07:28 +05:30
parent 62504963b5
commit da1ed11927
4 changed files with 36 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Use this to run the microservice without any docker setup.
source .venv/bin/activate
echo "Enter a target date (in yyyy-mm-dd format):"
read date
python3 "$(pwd)/cron/attendance.py" --date "$date"
deactivate
# All done:
echo "Done!"
exit 0