feat: full plan execution - CI/CD, critical fixes, UX polish, secondary/advanced features, E2E + docs
Phase 0 (CI/CD): fix root typecheck to cover api+worker+web; reconcile migration story into idempotent db:migrate (db:sync + db:triggers); add Gitea Actions quality/deploy/smoke workflow; rewrite README/AGENTS/DEPLOY docs; add requireWorkspaceAccess + recordActivityForEntity conventions. Phase 1 (critical fixes): calendar delete + drag/resize DnD; canvas card CRUD + bulk save + debounced autosave; logout route; graph edge workspaceId derivation; real analytics endpoints (drop Math.random); task board droppable columns + reorder persistence; Tiptap notes editor with sanitized HTML rendering; remove insecure passkey auth; domain/owner scoping (IDOR) on all by-ID routes + search/ export/realtime scoping; command palette routing + agent mention fetch; agent activity SSE handler; graph fly-to with tracked positions. Phase 2 (UX polish): login on design system; Sonner toasts app-wide; shared Loading/Empty/Error state components; working density/sidebarPos/reduce-motion settings; Inter typography; consolidated status-colors lib; unified detail routes; dashboard sort/realtime/responsive fixes; mobile responsive; a11y (radiogroups, sanitized snippets, badge labels). Phase 3 (features): daily notes timezone fix + delete + autosave + mood/energy create; active-domain store + topbar picker; graph domain picker + navigable entity links; tag assign/remove UI + server-side tag filter; real CSV export + import validation; custom fields on tasks. Phase 4 (advanced): migrate job worker into apps/worker (webhook delivery with HMAC, recurring spawn, ai_dispatch disabled); webhook queue helper + entity event enqueuing + test endpoint fix; recurring scheduledJobs pipeline; agents CRUD + permission editing + activity filters; real notifications feed; MCP polish (validation, error codes, domain scoping, dead sql leftover). Phase 5 (E2E + docs): rewrite Playwright suite for the Vite SPA (15 specs, new auth helpers, chromium-only in CI); add ephemeral-Postgres e2e CI job; rewrite docs/API.md for the real Hono API.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { fileURLToPath } from "node:url";
|
||||
import { sql } from "../db/client";
|
||||
|
||||
// Apply the search-vector trigger migration idempotently.
|
||||
// 0005_search_vector_trigger.sql uses CREATE OR REPLACE FUNCTION, DROP TRIGGER
|
||||
// IF EXISTS + CREATE TRIGGER, and idempotent backfill UPDATEs, so it is safe
|
||||
// to run on every deploy.
|
||||
const triggerFile = fileURLToPath(
|
||||
new URL("../drizzle/0005_search_vector_trigger.sql", import.meta.url),
|
||||
);
|
||||
|
||||
try {
|
||||
console.log(`Applying search-vector triggers from ${triggerFile} ...`);
|
||||
await sql.file(triggerFile);
|
||||
console.log("Search-vector triggers applied successfully.");
|
||||
process.exit(0);
|
||||
} catch (error) {
|
||||
console.error("Failed to apply search-vector triggers:", error);
|
||||
process.exit(1);
|
||||
}
|
||||
Executable
+112
@@ -0,0 +1,112 @@
|
||||
#!/usr/bin/env bash
|
||||
# Project E — idempotent deploy script.
|
||||
#
|
||||
# Intended to run from the Gitea Actions self-hosted runner (projecte-runner),
|
||||
# which lives on the same host as the docker-compose stack, but it is also safe
|
||||
# to run manually from a checkout or from DEPLOY_DIR itself.
|
||||
#
|
||||
# Safety guarantees:
|
||||
# - The host .env is never overwritten (secrets stay on the host).
|
||||
# - The project-e-pg-data volume is never touched/deleted.
|
||||
# - Safe to re-run: schema sync (drizzle-kit push --force) and trigger
|
||||
# application are idempotent, and `docker compose up -d` only recreates
|
||||
# services whose config/image changed.
|
||||
set -euo pipefail
|
||||
|
||||
DEPLOY_DIR="${DEPLOY_DIR:-/home/projecte/ProjectE}"
|
||||
|
||||
echo "=== Project E deploy ==="
|
||||
echo "Deploy dir: ${DEPLOY_DIR}"
|
||||
echo "Working dir: $(pwd)"
|
||||
|
||||
# ── 1. Sync the CI checkout into DEPLOY_DIR ───────────────────────────────
|
||||
if [ "$(pwd)" != "${DEPLOY_DIR}" ]; then
|
||||
echo "Syncing checkout into ${DEPLOY_DIR} ..."
|
||||
mkdir -p "${DEPLOY_DIR}"
|
||||
|
||||
if command -v rsync &>/dev/null; then
|
||||
rsync -a --delete \
|
||||
--exclude '.git' \
|
||||
--exclude 'node_modules' \
|
||||
--exclude '.next' \
|
||||
--exclude 'dist' \
|
||||
--exclude '.turbo' \
|
||||
--exclude '*.tsbuildinfo' \
|
||||
--exclude '.env' \
|
||||
./ "${DEPLOY_DIR}/"
|
||||
else
|
||||
echo "rsync not available; falling back to cp -r of needed top-level entries"
|
||||
cp -r package.json bunfig.toml bun.lock \
|
||||
apps packages db drizzle script \
|
||||
Dockerfile.* \
|
||||
Caddyfile docker-compose.yml \
|
||||
"${DEPLOY_DIR}/"
|
||||
fi
|
||||
else
|
||||
echo "Already in DEPLOY_DIR; skipping sync"
|
||||
fi
|
||||
|
||||
# ── 2. Operate from the deploy directory ──────────────────────────────────
|
||||
cd "${DEPLOY_DIR}"
|
||||
|
||||
# ── 3. Load secrets from the host .env (docker compose also picks these up) ─
|
||||
if [ -f .env ]; then
|
||||
echo "Loading ${DEPLOY_DIR}/.env"
|
||||
set -a
|
||||
# shellcheck disable=SC1091
|
||||
. ./.env
|
||||
set +a
|
||||
else
|
||||
echo "WARNING: no .env found in ${DEPLOY_DIR}; DATABASE_URL may be unset"
|
||||
fi
|
||||
|
||||
# ── 4. Ensure bun ──────────────────────────────────────────────────────────
|
||||
if ! command -v bun &>/dev/null; then
|
||||
echo "Installing bun 1.3.14 ..."
|
||||
npm i -g bun@1.3.14
|
||||
fi
|
||||
echo "bun: $(bun --version)"
|
||||
|
||||
# ── 5. Install dependencies ────────────────────────────────────────────────
|
||||
if ! bun install --frozen-lockfile; then
|
||||
echo "bun install --frozen-lockfile failed; retrying without --frozen-lockfile"
|
||||
bun install
|
||||
fi
|
||||
|
||||
# ── 6. Database schema + triggers (both idempotent) ───────────────────────
|
||||
echo "Migrating database schema + triggers (db:migrate) ..."
|
||||
bun run db:migrate
|
||||
|
||||
# ── 7. Build images and start the stack ───────────────────────────────────
|
||||
echo "Building docker images ..."
|
||||
docker compose build
|
||||
echo "Starting stack ..."
|
||||
docker compose up -d
|
||||
|
||||
# ── 8. Wait for API health (up to 60s) ────────────────────────────────────
|
||||
HEALTH_URL="${HEALTH_URL:-http://localhost:3000/api/health}"
|
||||
echo "Waiting for API health at ${HEALTH_URL} (max 60s) ..."
|
||||
healthy=0
|
||||
for i in $(seq 1 60); do
|
||||
code="$(curl -s -o /dev/null -w '%{http_code}' "${HEALTH_URL}" 2>/dev/null || true)"
|
||||
if [ "${code}" = "200" ]; then
|
||||
healthy=1
|
||||
break
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
|
||||
if [ "${healthy}" = "1" ]; then
|
||||
echo "API healthy after ${i}s (HTTP 200)"
|
||||
else
|
||||
echo "ERROR: API did not return HTTP 200 within 60s"
|
||||
echo "--- recent api logs ---"
|
||||
docker compose logs --tail=50 api || true
|
||||
echo "------------------------"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# ── 9. Print SPA status ────────────────────────────────────────────────────
|
||||
echo "SPA HTTP status: $(curl -s -o /dev/null -w '%{http_code}' http://localhost:3000/ || true)"
|
||||
|
||||
echo "Deploy complete: $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
||||
Reference in New Issue
Block a user