Unify MCP across clients; remove legacy plugin server
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled
This commit is contained in:
@@ -34,9 +34,9 @@ Manage all DSS development services from a single command.
|
||||
|
||||
| Service | Port | Description |
|
||||
|---------|------|-------------|
|
||||
| api | 8000 | FastAPI REST server |
|
||||
| admin-ui | 3456 | Vite dev server |
|
||||
| storybook | 6006 | Storybook design docs |
|
||||
| api | 6220 | FastAPI REST server |
|
||||
| admin-ui | 6221 | Vite dev server |
|
||||
| storybook | 6226 | Storybook design docs |
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -71,25 +71,25 @@ When the user runs this command:
|
||||
3. For `status` action, show a table with service states
|
||||
|
||||
4. After `start`, provide clickable URLs:
|
||||
- API: http://localhost:8000
|
||||
- admin-ui: http://localhost:3456
|
||||
- Storybook: http://localhost:6006
|
||||
- API: http://localhost:6220
|
||||
- admin-ui: http://localhost:6221
|
||||
- Storybook: http://localhost:6226
|
||||
|
||||
## Service Details
|
||||
|
||||
### API Server (port 8000)
|
||||
### API Server (port 6220)
|
||||
- FastAPI REST API
|
||||
- Endpoints: projects, figma, health, config
|
||||
- Command: `uvicorn apps.api.server:app --reload`
|
||||
- Command: `uvicorn apps.api.server:app --host 0.0.0.0 --port 6220 --reload`
|
||||
- Log: `/tmp/dss-api.log`
|
||||
|
||||
### Admin UI (port 3456)
|
||||
### Admin UI (port 6221)
|
||||
- Preact/Vite development server
|
||||
- Design system management interface
|
||||
- Command: `npm run dev`
|
||||
- Log: `/tmp/dss-admin-ui.log`
|
||||
|
||||
### Storybook (port 6006)
|
||||
### Storybook (port 6226)
|
||||
- Component documentation
|
||||
- Token visualization
|
||||
- Command: `npm run storybook`
|
||||
@@ -104,6 +104,5 @@ If a service fails to start:
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/dss-setup` - Full environment setup
|
||||
- `/dss-init` - Initialize DSS structure
|
||||
- `/dss-init` - Full environment setup + initialization
|
||||
- `/dss-reset` - Reset to clean state
|
||||
|
||||
Reference in New Issue
Block a user