We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
may I know how to run cronjob for fetching attendance every minute?
I tried as below
crontab -l * * * * * cd /home/username/frappe-bench/biometric-attendance-sync-tool && source venv/bin/activate && python3 erpnext_sync.py
but its not working.
Update: It's working now.
umar@PC:~$ crontab -l #!/usr/bin/python3 * * * * * /usr/bin/python3 -c 'from erpnext_sync import main; main()'
Now my question is about schedule time, what is correct way to run this script every minute or @reboot?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
may I know how to run cronjob for fetching attendance every minute?
I tried as below
but its not working.
Update: It's working now.
Now my question is about schedule time, what is correct way to run this script every minute or @reboot?
The text was updated successfully, but these errors were encountered: