-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (74 loc) · 2.11 KB
/
Copy path.gitignore
File metadata and controls
83 lines (74 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.DS_Store
.worktrees
.env
.env.*
!.env*.example
.local-stash/
# Playwright e2e artifacts (per-run traces, screenshots, reports, raw results).
e2e/traces/
e2e/playwright-report/
e2e/test-results/
e2e/results.json
# Playwright also drops a test-results/ at the repo root when run from here.
test-results/
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 is intentionally COMMITTED (tracked): the build
# runs `npm ci`, which needs the lockfile in-repo. Do not re-add this ignore.
electron/build-info.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/
# Pre-built webapp-template node_modules archive (generated by
# scripts/build-template-archive.sh, optionally bundled into the DMG).
backend/apps/outputs/webapp_template_cache/
# Python virtualenvs anywhere (a root .venv was accidentally committed once)
.venv/
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/
# Personal/per-machine AI working notes. Shared, enforced conventions live in committed
# CLAUDE.md files (root + per-package); personal notes go in CLAUDE.local.md instead.
CLAUDE.local.md
/CLAUDE.md
# Local-only operator helpers (never commit)
scripts/set-fly-*.sh
# Local-only background dev-team state/docs (personal, never commit)
docs/ops/
# 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
htmlcov/
# Editor noise — per-developer, never useful in repo
.idea/
.vscode/
*.swp
*~
.envrc
# OS detritus
Thumbs.db
ehthumbs.db
desktop.ini
frontend/tsconfig.tsbuildinfo