-
Notifications
You must be signed in to change notification settings - Fork 390
Expand file tree
/
Copy path.gitignore
More file actions
97 lines (79 loc) · 1.33 KB
/
.gitignore
File metadata and controls
97 lines (79 loc) · 1.33 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
# Claude Code user-local settings (not project config)
.claude/settings.local.json
# Override global .gitignore to track project-level AI tooling configs
!.cursor
!.cursor/mcp.json
.worktrees
# Playwright MCP scratch files
seed.spec.ts
specs/
# misc
**/.DS_Store
**/*.pem
**/keys
# logs
**/*.log
**/npm-debug.log*
**/lerna-debug.log*
# yarn
**/yarn-debug.log*
**/yarn-error.log*
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# dotenv environment variable files
**/.env.development.local
**/.env.test.local
**/.env.production.local
**/.env.local
**/.dockerhub.env
**/.ghcr.env
# Next.js build output
packages/app/.next
packages/app/.next-e2e
packages/app/.pnp
packages/app/.pnp.js
packages/app/.vercel
packages/app/coverage
packages/app/out
packages/app/tmp
packages/app/next-env.d.ts
# optional npm cache directory
**/.npm
package-lock.json
# dependency directories
**/node_modules
# build output
**/dist
**/build
**/tsconfig.tsbuildinfo
# jest coverage report
**/coverage
# e2e
e2e/cypress/screenshots/
e2e/cypress/videos/
e2e/cypress/results
# playwright
**/test-results/
**/playwright-report/
**/playwright/.cache/
**/.auth/
# storybook
**/storybook-static/
# scripts
scripts/*.csv
**/venv
**/__pycache__/
*.py[cod]
*$py.class
# docker
docker-compose.prod.yml
.volumes
# NX
.nx/
# webstorm
.idea