We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e50dac commit 3cb7736Copy full SHA for 3cb7736
1 file changed
run_all.sh
@@ -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