#!/bin/bash # FuelBoard Relay API launcher (official Fuel Finder API source) set -euo pipefail cd "$(dirname "$0")/.." if [ ! -f .env ]; then echo "⚠ No .env found — running in DEMO/CSV-fallback mode (no credentials)." fi set -a [ -f .env ] && source .env set +a PORT="${FUEL_RELAY_PORT:-8789}" exec python3 -m uvicorn app.main:app --host 0.0.0.0 --port "$PORT"