mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-02 11:45:20 +02:00
46c82ce8ec
New `gstack team` CLI with create, members, set subcommands. Migration adds team_settings (admin-only), alert_cooldowns (edge-fn dedup), and create_team() SECURITY DEFINER RPC for atomic team + first member creation. 9 tests. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# gstack team — team admin CLI
|
|
# Delegates to lib/cli-team.ts via bun
|
|
|
|
GSTACK_DIR="${GSTACK_DIR:-$(cd "$(dirname "$0")/.." && pwd)}"
|
|
exec bun run "$GSTACK_DIR/lib/cli-team.ts" "$@"
|