Skip to content

Commit 3cb7736

Browse files
Add run_all.sh script for SQL pipeline
1 parent 5e50dac commit 3cb7736

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

run_all.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
set -e
3+
4+
# SQL Pipeline Runner
5+
# This script runs the complete SQL data engineering pipeline
6+
7+
echo "Starting SQL pipeline..."
8+
echo "Database: $DB_NAME at $DB_HOST:$DB_PORT"
9+
10+
# Add your SQL initialization and pipeline commands below
11+
# Example: psql -h $DB_HOST -U $DB_USER -d $DB_NAME -f sql/init.sql
12+
13+
echo "SQL pipeline completed successfully!"

0 commit comments

Comments
 (0)