mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-07-06 21:28:00 +02:00
181f24cfcc
Restructure into apps/worker, apps/cli, packages/mcp-server with Turborepo task orchestration, pnpm workspaces, Biome linting/formatting, and tsdown CLI bundling. Key changes: - src/ -> apps/worker/src/, cli/ -> apps/cli/, mcp-server/ -> packages/mcp-server/ - prompts/ and configs/ moved into apps/worker/ - npm replaced with pnpm, package-lock.json replaced with pnpm-lock.yaml - Dockerfile updated for pnpm-based builds - CLI logs command rewritten with chokidar for cross-platform reliability - Router health checking added for auto-detected router mode - Centralized path resolution via apps/worker/src/paths.ts
72 lines
858 B
Plaintext
72 lines
858 B
Plaintext
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime directories
|
|
sessions/
|
|
deliverables/
|
|
xben-benchmark-results/
|
|
.claude/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Development files
|
|
*.md
|
|
!CLAUDE.md
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# CLI package (runs on host, not in container)
|
|
# Keep apps/cli/package.json so pnpm workspaces resolve
|
|
apps/cli/src/
|
|
apps/cli/dist/
|
|
apps/cli/infra/
|
|
apps/cli/tsconfig.json
|
|
apps/cli/tsdown.config.ts
|
|
|
|
# Docker files (avoid recursive copying)
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Test files
|
|
test/
|
|
tests/
|
|
spec/
|
|
coverage/
|
|
|
|
# Documentation (except CLAUDE.md which is needed)
|
|
docs/
|
|
README.md
|
|
LICENSE
|
|
CHANGELOG.md |