14 lines
691 B
Bash
Executable File
14 lines
691 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd /home/puh/projects/scud_ai
|
|
mkdir -p /home/puh/projects/scud_ai/logs
|
|
|
|
echo "==================================================" >> /home/puh/projects/scud_ai/logs/cron_etl.log
|
|
echo "[CRON START] $(date '+%Y-%m-%d %H:%M:%S')" >> /home/puh/projects/scud_ai/logs/cron_etl.log
|
|
echo "==================================================" >> /home/puh/projects/scud_ai/logs/cron_etl.log
|
|
|
|
/home/puh/scud_orion_ai_v2/venv/bin/python /home/puh/projects/scud_ai/main_etl.py >> /home/puh/projects/scud_ai/logs/cron_etl.log 2>&1
|
|
|
|
echo "[CRON FINISH] $(date '+%Y-%m-%d %H:%M:%S')" >> /home/puh/projects/scud_ai/logs/cron_etl.log
|
|
echo "" >> /home/puh/projects/scud_ai/logs/cron_etl.log |