| 1 | # macOS |
| 2 | .DS_Store |
| 3 | ._* |
| 4 | |
| 5 | # Editor |
| 6 | .vscode/ |
| 7 | .idea/ |
| 8 | *.swp |
| 9 | *.swo |
| 10 | |
| 11 | # Node |
| 12 | node_modules/ |
| 13 | *.log |
| 14 | npm-debug.log* |
| 15 | yarn-debug.log* |
| 16 | yarn-error.log* |
| 17 | .pnpm-debug.log* |
| 18 | .npm |
| 19 | .yarn-integrity |
| 20 | package-lock.json |
| 21 | yarn.lock |
| 22 | pnpm-lock.yaml |
| 23 | .pnp.* |
| 24 | |
| 25 | # Python |
| 26 | __pycache__/ |
| 27 | *.py[cod] |
| 28 | *$py.class |
| 29 | .Python |
| 30 | .venv/ |
| 31 | venv/ |
| 32 | *.egg-info/ |
| 33 | |
| 34 | # Build / dist |
| 35 | dist/ |
| 36 | build/ |
| 37 | out/ |
| 38 | .next/ |
| 39 | .cache/ |
| 40 | .parcel-cache/ |
| 41 | *.tsbuildinfo |
| 42 | |
| 43 | # Env / secrets |
| 44 | .env |
| 45 | .env.* |
| 46 | !.env.example |
| 47 | *.pem |
| 48 | |
| 49 | # Wrangler / Cloudflare |
| 50 | .wrangler/ |
| 51 | .dev.vars |
| 52 | |
| 53 | # Local-only working files |
| 54 | scratch/ |
| 55 | tmp/ |
| 56 | |
| 57 | # Per-user runtime state (projects, assets, preview, MP4 outputs) |
| 58 | # This dir is created by the CLI / studio at runtime and is per-developer. |
| 59 | .html-video/ |
| 60 | |
| 61 | # Generated video output (large binaries) |
| 62 | *.mp4 |
| 63 | *.webm |
| 64 | *.mov |
| 65 | *.gif |
| 66 | output/ |
| 67 | renders/ |
| 68 |