cloudflare/kumo
Publicmirrored fromhttps://github.com/cloudflare/kumoAvailable
.gitignore
52lines · modecode
| 1 | # Dependencies |
| 2 | node_modules/ |
| 3 | |
| 4 | # Build outputs |
| 5 | build/ |
| 6 | dist/ |
| 7 | .react-router/ |
| 8 | .build-complete |
| 9 | |
| 10 | # Cloudflare |
| 11 | .wrangler/ |
| 12 | .dev.vars |
| 13 | wrangler.toml.local |
| 14 | |
| 15 | |
| 16 | # Environment variables |
| 17 | .env |
| 18 | .env.local |
| 19 | .env.production.local |
| 20 | .env.development.local |
| 21 | |
| 22 | # Logs |
| 23 | *.log |
| 24 | npm-debug.log* |
| 25 | yarn-debug.log* |
| 26 | yarn-error.log* |
| 27 | pnpm-debug.log* |
| 28 | |
| 29 | # Editor directories and files |
| 30 | .vscode/ |
| 31 | .idea/ |
| 32 | *.swp |
| 33 | *.swo |
| 34 | *~ |
| 35 | |
| 36 | # OS files |
| 37 | .DS_Store |
| 38 | Thumbs.db |
| 39 | |
| 40 | # TypeScript |
| 41 | *.tsbuildinfo |
| 42 | |
| 43 | # Testing |
| 44 | coverage/ |
| 45 | .nyc_output/ |
| 46 | |
| 47 | # Temporary files |
| 48 | *.tmp |
| 49 | .cache/ |
| 50 | |
| 51 | # Codex |
| 52 | .codex/environments |