mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 08:03:42 +00:00
11 lines
208 B
Bash
Executable file
11 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
cd "$repo_root"
|
|
./scripts/agent-bootstrap
|
|
pnpm verify
|
|
./scripts/dev-up
|
|
./scripts/integration/verify-stack
|