#!/bin/bash # Set default values for HOST and PORT if not provided HOST=${HOST:-0.0.0.0} PORT=${PORT:-3000} # Change to the Svelte app directory cd sweb # Run the development server with the specified host and port bun run dev -- --host $HOST --port $PORT