16 lines
829 B
Plaintext
16 lines
829 B
Plaintext
# Cron job example for automatic file cleanup
|
|
# This will run the cleanup script every hour to remove expired files
|
|
# Edit your crontab with: crontab -e
|
|
# Add this line to run cleanup every hour:
|
|
|
|
0 * * * * cd /home/colby/sharey && python3 cleanup_expired.py >> logs/cleanup.log 2>&1
|
|
|
|
# Alternative schedules:
|
|
# Every 15 minutes: */15 * * * * cd /home/colby/sharey && python3 cleanup_expired.py >> logs/cleanup.log 2>&1
|
|
# Every 6 hours: 0 */6 * * * cd /home/colby/sharey && python3 cleanup_expired.py >> logs/cleanup.log 2>&1
|
|
# Once daily at 2 AM: 0 2 * * * cd /home/colby/sharey && python3 cleanup_expired.py >> logs/cleanup.log 2>&1
|
|
|
|
# For production, adjust the path to your actual installation directory
|
|
# Example for production:
|
|
# 0 * * * * cd /var/www/sharey && /usr/bin/python3 cleanup_expired.py >> logs/cleanup.log 2>&1
|