6 lines
143 B
Bash
6 lines
143 B
Bash
#!/bin/sh
|
|
# Cron job runner for Elmeg
|
|
# Add to crontab: 0 9 * * 0 /app/scripts/cron_weekly_digest.sh
|
|
|
|
cd /app
|
|
python services/weekly_digest.py
|