mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-21 17:17:41 +02:00
backend/apps/dashboard_layout/ was never mounted in main.py and had no frontend/electron callers — its SubApp and endpoints were fully superseded by backend/apps/dashboards/. backend/apps/service/models.py was an empty placeholder with no importers. Also adds .dead-code-scan/ and the scan script to .gitignore, and drops the stale dashboard_layout/ entry from the README directory tree. Co-authored-by: Cursor <cursoragent@cursor.com>
73 lines
1.5 KiB
Plaintext
73 lines
1.5 KiB
Plaintext
.DS_Store
|
|
.worktrees
|
|
.env
|
|
.env.*
|
|
!.env*.example
|
|
.local-stash/
|
|
backend/data/**
|
|
!backend/data/outputs/
|
|
!backend/data/outputs/*.json
|
|
|
|
# Electron build artifacts
|
|
electron/dist/
|
|
electron/python-env/
|
|
electron/build-staging/
|
|
electron/node_modules/
|
|
electron/package-lock.json
|
|
|
|
# Router is fetched from npm at build time into electron/build-staging/router.
|
|
# No local router/ directory is tracked.
|
|
|
|
# Pre-installed MCP server dependencies
|
|
backend/npm-servers/*/node_modules/
|
|
|
|
# Frontend build output
|
|
frontend/dist/
|
|
# Bundled uv binaries (downloaded during build)
|
|
backend/uv-bin/
|
|
# Backend Python venv (created by run.ps1 / backend/run.sh)
|
|
backend/.venv/
|
|
.account-factory
|
|
openswarm-cloud
|
|
.openswarm-cloud
|
|
# Top-level only — Haik's PostHog dashboard webapp clone. Anchored with
|
|
# leading slash so this doesn't accidentally ignore backend/apps/analytics/.
|
|
/analytics
|
|
.claude/
|
|
# Local-only operator helpers (never commit)
|
|
scripts/set-fly-*.sh
|
|
|
|
# Python bytecode (regenerates on every import)
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Test/lint caches (all auto-rebuild on next run)
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Coverage reports (generated by scripts/test.sh and CI)
|
|
.coverage
|
|
.coverage.*
|
|
backend/coverage_html/
|
|
backend/coverage.xml
|
|
htmlcov/
|
|
|
|
# Dead-code scan workspace (one-shot scratch — never committed)
|
|
.dead-code-scan/
|
|
backend/scripts/dead_code_scan.py
|
|
|
|
# Editor noise — per-developer, never useful in repo
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*~
|
|
.envrc
|
|
|
|
# OS detritus
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
desktop.ini
|
|
frontend/tsconfig.tsbuildinfo
|