- Add esbuild build script to package.json - Add .gitignore for dist/ - Remove stale tsc-generated .js files (now bundled) - Include sense files generated by workflow run (hermes-gateway-health update, worker-process-metrics) - Clean up nerve.yaml (remove deleted workflows, migrate reflexes to interval)
8 lines
439 B
SQL
8 lines
439 B
SQL
-- Migration: 0002_add_http_probe
|
|
-- HTTP reachability columns for hermes-gateway-health sense.
|
|
|
|
ALTER TABLE hermes_gateway_health ADD COLUMN http_ok INTEGER NOT NULL DEFAULT 0;
|
|
ALTER TABLE hermes_gateway_health ADD COLUMN http_status_code INTEGER NOT NULL DEFAULT 0;
|
|
ALTER TABLE hermes_gateway_health ADD COLUMN http_latency_ms INTEGER NOT NULL DEFAULT 0;
|
|
ALTER TABLE hermes_gateway_health ADD COLUMN http_error TEXT NOT NULL DEFAULT '';
|