14 lines
No EOL
633 B
Bash
14 lines
No EOL
633 B
Bash
#!/bin/bash
|
|
|
|
cd /home/azureuser/data-dwh-dbt-project
|
|
|
|
# Update from git
|
|
echo "Updating dbt project from git." | while IFS= read -r line; do printf '%s %s\n' "$(date)" "$line"; done >> /home/azureuser/dbt_run.log 2>&1
|
|
git pull | while IFS= read -r line; do printf '%s %s\n' "$(date)" "$line"; done >> /home/azureuser/dbt_run.log 2>&1
|
|
|
|
# Activate venv
|
|
source venv/bin/activate
|
|
|
|
# Run dbt
|
|
echo "Triggering dbt run" | while IFS= read -r line; do printf '%s %s\n' "$(date)" "$line"; done >> /home/azureuser/dbt_run.log 2>&1
|
|
dbt run | while IFS= read -r line; do printf '%s %s\n' "$(date)" "$line"; done >> /home/azureuser/dbt_run.log 2>&1 |