Unify MCP across clients; remove legacy plugin server
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled

This commit is contained in:
DSS
2025-12-12 14:33:18 -03:00
parent 1d53ec341d
commit ec09a0a662
60 changed files with 3451 additions and 4668 deletions

View File

@@ -47,12 +47,12 @@ server:
- "http://localhost:3000" # Development
# ==========================================
# Database Configuration
# Storage Configuration (JSON)
# ==========================================
database:
path: "/home/overbits/.dss/dss.db"
backup_path: "/home/overbits/.dss/backups/"
auto_backup: true
storage:
type: "json"
dss_home: "${DSS_HOME}"
data_dir: "${DSS_HOME}/data"
# ==========================================
# Theme Configuration
@@ -60,7 +60,7 @@ database:
themes:
default_light: "DSS Light"
default_dark: "DSS Dark"
custom_themes_dir: "/home/overbits/dss/dss-mvp1/themes/"
custom_themes_dir: "${DSS_HOME}/themes/"
# ==========================================
# Style Dictionary Configuration
@@ -70,7 +70,7 @@ style_dictionary:
- "css"
- "scss"
- "json"
build_path: "/home/overbits/dss/dss-mvp1/dist/tokens/"
build_path: "${DSS_HOME}/dist/tokens/"
platforms:
- name: "css"
transformGroup: "css"
@@ -95,7 +95,7 @@ components:
# shadcn/ui
shadcn:
enabled: true
components_dir: "/home/overbits/dss/dss-mvp1/components/"
components_dir: "${DSS_HOME}/components/"
registry_url: "https://ui.shadcn.com/registry"
# HeroUI
@@ -109,7 +109,6 @@ components:
# ==========================================
testing:
use_mock_apis: false # Use real APIs in production tests
test_db_path: "/home/overbits/.dss/test.db"
coverage_threshold: 80
markers:
- "unit"

View File

@@ -1,7 +1,7 @@
{
"name": "dss-mvp1",
"name": "dss-storybook",
"version": "1.0.0",
"description": "Design System Server MVP1 - External tool dependencies",
"description": "DSS Storybook - External tool dependencies",
"private": true,
"scripts": {
"test": "pytest",