#!/bin/bash # Build script that handles sqlx offline compilation # Set SQLX_OFFLINE to prevent database connection during compilation export SQLX_OFFLINE=true # Build the workspace echo "Building with SQLX_OFFLINE=true..." cargo build --workspace "$@"