5 lines
222 B
Plaintext
5 lines
222 B
Plaintext
# Cron job for cleaning up unverified accounts
|
|
# Run every hour at minute 0
|
|
0 * * * * cd /app && /usr/local/bin/python /app/cleanup_unverified_accounts.py --quiet >> /var/log/cron.log 2>&1
|
|
|
|
# Empty line required at the end |