Feat rebrand armature (#43)
All checks were successful
CI/CD / detect-changes (push) Successful in 3s
CI/CD / test-frontend (push) Successful in 5s
CI/CD / test-go-pg (push) Successful in 2m34s
CI/CD / test-sqlite (push) Successful in 2m46s
CI/CD / build-and-deploy (push) Successful in 1m55s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #43.
This commit is contained in:
2026-03-31 23:25:37 +00:00
committed by xcaliber
parent fb5284f667
commit 680ec3b897
321 changed files with 956 additions and 1033 deletions

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 001 Core (SQLite)
-- Armature — 001 Core (SQLite)
-- ==========================================
PRAGMA journal_mode = WAL;
@@ -69,7 +69,7 @@ CREATE TABLE IF NOT EXISTS global_settings (
INSERT OR IGNORE INTO global_settings (key, value) VALUES
('registration', '{"enabled": true}'),
('site', '{"name": "Switchboard Core", "tagline": "Extension Platform"}'),
('site', '{"name": "Armature", "tagline": "Extension Platform"}'),
('banner', '{"enabled": false, "text": "", "bg": "#007a33", "fg": "#ffffff"}');
CREATE TABLE IF NOT EXISTS user_presence (

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 002 Teams & Access Control (SQLite)
-- Armature — 002 Teams & Access Control (SQLite)
-- ==========================================
CREATE TABLE IF NOT EXISTS teams (

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 003 Packages & Extensions (SQLite)
-- Armature — 003 Packages & Extensions (SQLite)
-- ==========================================
CREATE TABLE IF NOT EXISTS packages (

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 004 Connections & Dependencies (SQLite)
-- Armature — 004 Connections & Dependencies (SQLite)
-- ==========================================
CREATE TABLE IF NOT EXISTS ext_connections (

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 005 Notifications (SQLite)
-- Armature — 005 Notifications (SQLite)
-- ==========================================
CREATE TABLE IF NOT EXISTS notifications (

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 006 Audit (SQLite)
-- Armature — 006 Audit (SQLite)
-- ==========================================
CREATE TABLE IF NOT EXISTS audit_log (

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 007 Workflows (SQLite)
-- Armature — 007 Workflows (SQLite)
-- ==========================================
-- v0.3.0: persona_id + history_mode dropped (chat vestiges).
-- transition_rules → stage_config, stage_mode modernized.

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 009 Multi-Replica HA (SQLite)
-- Armature — 009 Multi-Replica HA (SQLite)
-- ==========================================
CREATE TABLE IF NOT EXISTS ws_tickets (

View File

@@ -1,5 +1,5 @@
-- ==========================================
-- Switchboard Core — 011 Triggers & Scheduled Tasks (SQLite)
-- Armature — 011 Triggers & Scheduled Tasks (SQLite)
-- ==========================================
-- ── Extension Triggers (event + webhook) ──────