#!/bin/bash # Load environment variables from current directory if [ ! -f .env ]; then echo "Error: .env file not found in current directory!" exit 1 fi source .env # Connect to MySQL as root mysql -u root -p"$DEV_DB_ROOT_PASSWORD" <