mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-20 07:44:01 -05:00
109 lines
3.1 KiB
Bash
Executable File
109 lines
3.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
# Run the web app locally in full isolation (database, storage and authentication all stored locally)
|
|
# What runs on each port?
|
|
# - 4000: Firebase emulator UI
|
|
# - 9099: Firebase emulator authentication
|
|
# - 9199: Firebase emulator storage
|
|
# - 54323: Supabase emulator UI
|
|
# - 54322: Supabase emulator Database (direct client)
|
|
# - 54321: Supabase emulator Database (font-end client)
|
|
# - 3000: Front end
|
|
# - 8088: Back end
|
|
|
|
# How to view users? Each user is stored in two locations for two different purposes:
|
|
# In the auth system (firebase emulator) to see the auth info (email, provider, etc.): http://127.0.0.1:4000/auth
|
|
# In the database (users and private_users table) to see the user info specific to compass (username, notif preferences, etc.): http://127.0.0.1:54323
|
|
|
|
# Colors
|
|
GREEN='\033[0;32m'
|
|
RED='\033[0;31m'
|
|
NC='\033[0m'
|
|
print_status() { echo -e "${GREEN}[E2E-DEV]${NC} $1"; }
|
|
print_error() { echo -e "${RED}[ERROR]${NC} $1"; }
|
|
|
|
# Clean ghost processes
|
|
kill_ghosts() {
|
|
for p in 3000 4000 4400 4500 8088 9099 9199; do
|
|
pids=$(lsof -ti :$p 2>/dev/null)
|
|
if [ -n "$pids" ]; then
|
|
kill $pids || true
|
|
fi
|
|
done
|
|
}
|
|
kill_ghosts
|
|
|
|
set -euo pipefail
|
|
|
|
# Function to clean up background processes
|
|
cleanup() {
|
|
print_status "Cleaning up..."
|
|
|
|
# Stop Firebase emulators
|
|
./scripts/firebase_stop.sh
|
|
|
|
# Kill all background processes
|
|
for pid in "${PIDS[@]:-}"; do
|
|
if kill -0 "$pid" 2>/dev/null; then
|
|
kill "$pid" 2>/dev/null || true
|
|
wait "$pid" 2>/dev/null || true
|
|
fi
|
|
done
|
|
|
|
kill_ghosts
|
|
|
|
# Stop Docker containers
|
|
if [ "${SKIP_DB_CLEANUP:-}" != "true" ]; then
|
|
print_status "Stopping test database..."
|
|
docker compose -f scripts/docker-compose.test.yml down -v
|
|
fi
|
|
|
|
sleep 2
|
|
|
|
print_status "Cleanup complete"
|
|
}
|
|
|
|
# Trap EXIT, INT, TERM to run cleanup automatically
|
|
trap cleanup EXIT INT TERM
|
|
|
|
export $(cat .env.test | grep -v '^#' | xargs)
|
|
|
|
# Ensure Supabase local stack is running; if not, reset/start it
|
|
STATUS_JSON=$(supabase status --output json 2>/dev/null || echo '')
|
|
API_URL=$(echo "$STATUS_JSON" | jq -r '.API_URL // empty')
|
|
|
|
if [ -z "$API_URL" ]; then
|
|
echo "Supabase is not running. Bootstrapping local stack with: yarn test:db:reset"
|
|
yarn test:db:reset
|
|
STATUS_JSON=$(supabase status --output json)
|
|
fi
|
|
|
|
export NEXT_PUBLIC_SUPABASE_URL=$(echo "$STATUS_JSON" | jq -r '.API_URL')
|
|
export NEXT_PUBLIC_SUPABASE_ANON_KEY=$(echo "$STATUS_JSON" | jq -r '.ANON_KEY')
|
|
export DATABASE_URL=$(echo "$STATUS_JSON" | jq -r '.DB_URL')
|
|
|
|
echo $NEXT_PUBLIC_SUPABASE_URL
|
|
echo $NEXT_PUBLIC_SUPABASE_ANON_KEY
|
|
echo $DATABASE_URL
|
|
|
|
# Start servers in background and store their PIDs
|
|
PIDS=()
|
|
npx nyc --reporter=lcov yarn --cwd=web serve & PIDS+=($!)
|
|
npx nyc --reporter=lcov yarn --cwd=backend/api dev & PIDS+=($!)
|
|
yarn emulate & PIDS+=($!)
|
|
|
|
npx wait-on http://localhost:3000
|
|
|
|
echo ""
|
|
echo "✅ Isolated web app fully running and ready!"
|
|
echo " Useful links:"
|
|
echo " - Front end: http://127.0.0.1:3000"
|
|
echo " - Supabase UI: http://127.0.0.1:54323"
|
|
echo " - Firebase UI: http://127.0.0.1:4000"
|
|
echo ""
|
|
read -p "Press enter to exit..." < /dev/tty
|
|
|
|
exit ${TEST_FAILED:-0}
|