feat: Google OAuth emulator + port args for bun dev:agent"

This commit is contained in:
SirTenzin
2026-04-17 17:31:08 +00:00
parent 640ea69abc
commit 49551b3f0f
7 changed files with 103 additions and 14 deletions

13
scripts/setup/devAgent.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
SERVER_PORT="${1:-8080}"
VITE_PORT="${2:-3000}"
export AGENT_SERVER_PORT="$SERVER_PORT"
export AGENT_VITE_PORT="$VITE_PORT"
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
bash "$DIR/agent-services.sh"
exec SERVER_PORT="$SERVER_PORT" VITE_PORT="$VITE_PORT" bun scripts/dev.ts