13 lines
344 B
Bash
Executable File
13 lines
344 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
echo "==> Backend (Swift release binary → backend/.build/…)"
|
|
docker compose --profile compile run --rm backend-compile
|
|
|
|
echo "==> Admin (Vite → admin-web/dist/)"
|
|
docker compose --profile compile run --rm admin-compile
|
|
|
|
echo "Done."
|