#!/usr/bin/env bash
set -euo pipefail

# Panasyn development script
# Runs the terminal emulator with debug logging and optional flags.

SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$SCRIPT_DIR/.."
cd "$PROJECT_ROOT"

RUST_LOG="${RUST_LOG:-info}" cargo run "$@"
