-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
103 lines (83 loc) · 1.93 KB
/
Copy path.gitignore
File metadata and controls
103 lines (83 loc) · 1.93 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# dependencies (bun install)
node_modules
bun.lock
package-lock.json
# output
out
dist
*.tgz
# Cloudflare Workers artifacts
integrations/*/public
integrations/*/.wrangler
# ...but Laravel's public/ is real source (the framework's HTTP entry point),
# not a wrangler artifact
!integrations/laravel/public
# air (Go live-reload) tmp dir + the host-binary built by `go run .`
integrations/echo/tmp/
integrations/echo/echo
integrations/gin/tmp/
integrations/gin/gin
integrations/chi/tmp/
integrations/chi/chi
integrations/nethttp/tmp/
integrations/nethttp/nethttp
# Mojolicious example: staged BarefootJS Perl plugin copy
integrations/mojolicious/lib
# code coverage
coverage
*.lcov
# logs
logs
# ...but Laravel's storage/logs must exist for the framework's file log
# channel (only its .gitignore placeholder is tracked)
!integrations/laravel/storage/logs
_.log
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# caches
.eslintcache
.cache
*.tsbuildinfo
# IntelliJ based IDEs
.idea
# Finder (MacOS) folder config
.DS_Store
# integrations
integrations/*/*.js
integrations/*/bun.lock
integrations/*/package-lock.json
integrations/*/node_modules
# Claude Code local overrides
CLAUDE.local.md
.claude/worktrees/
tmp/claude/
# Playwright
playwright-report/
test-results/
# Preview dev server output
.preview-dist/
# Render temp files (adapter-tests)
.render-temp/
.playwright-mcp/
# Perl CPAN dist build artifacts (Makefile.PL / make)
packages/adapter-*/*.tar.gz
packages/adapter-*/blib/
packages/adapter-*/Makefile
packages/adapter-*/MYMETA.*
# Perl integration runtime libs (assembled by scripts/assemble-deps.ts)
integrations/*/lib
# Python
__pycache__/
*.pyc
# PHP (Composer)
vendor/
composer.lock
# Benchmarks: generated output (runner/build.ts, babel transform temp, results)
benchmarks/results/
benchmarks/**/.babel-out*/
benchmarks/ssr/apps/*/.build-temp/