# Cron jobs for foo.com run at 3AM
DJANGO_SETTINGS_MODULE=foo.settings
0 3 * * * python /path/to/maintenance/script.py
30 3 * * * python /path/to/other/script.py
# Cron jobs for bar.com run at 4AM
DJANGO_SETTINGS_MODULE=bar.settings
0 4 * * * python /path/to/maintenance/script.py
30 4 * * * python /path/to/other/script.py