Initial open-source release: Aura CRM platform (core + production)

This commit is contained in:
Open Source Release
2026-08-19 08:35:21 +00:00
commit e8d037bef3
515 changed files with 64691 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
-- +goose Up
CREATE TABLE modules (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT UNIQUE NOT NULL,
base_url TEXT NOT NULL,
health_path TEXT NOT NULL DEFAULT '/health',
token_hash TEXT NOT NULL,
status TEXT NOT NULL DEFAULT 'unknown' CHECK (status IN ('unknown', 'healthy', 'unhealthy')),
metadata JSONB NOT NULL DEFAULT '{}'::jsonb,
registered_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
last_heartbeat_at TIMESTAMPTZ
);