Skip to content

Commit bf72afe

Browse files
committed
Assistant checkpoint: Add comprehensive .gitignore file
Assistant generated file changes: - .gitignore: Add comprehensive gitignore to exclude build artifacts, dependencies, and temporary files --- User prompt: add gitiignore to reduccr or unneccary file to uploaded. Replit-Commit-Author: Assistant Replit-Commit-Session-Id: 6d74aa9e-44d0-4e5b-b999-934f4d23c112
1 parent fa3c034 commit bf72afe

File tree

1 file changed

+134
-0
lines changed

1 file changed

+134
-0
lines changed

.gitignore

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
2+
# Dependencies
3+
node_modules/
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Build outputs
9+
dist/
10+
build/
11+
*.tgz
12+
*.tar.gz
13+
14+
# Runtime data
15+
pids
16+
*.pid
17+
*.seed
18+
*.pid.lock
19+
20+
# Coverage directory used by tools like istanbul
21+
coverage/
22+
*.lcov
23+
24+
# nyc test coverage
25+
.nyc_output
26+
27+
# Grunt intermediate storage
28+
.grunt
29+
30+
# Bower dependency directory
31+
bower_components
32+
33+
# node-waf configuration
34+
.lock-wscript
35+
36+
# Compiled binary addons
37+
build/Release
38+
39+
# Dependency directories
40+
jspm_packages/
41+
42+
# TypeScript cache
43+
*.tsbuildinfo
44+
45+
# Optional npm cache directory
46+
.npm
47+
48+
# Optional eslint cache
49+
.eslintcache
50+
51+
# Microbundle cache
52+
.rpt2_cache/
53+
.rts2_cache_cjs/
54+
.rts2_cache_es/
55+
.rts2_cache_umd/
56+
57+
# Optional REPL history
58+
.node_repl_history
59+
60+
# Output of 'npm pack'
61+
*.tgz
62+
63+
# Yarn Integrity file
64+
.yarn-integrity
65+
66+
# dotenv environment variables file
67+
.env
68+
.env.test
69+
.env.production
70+
.env.local
71+
72+
# parcel-bundler cache
73+
.cache
74+
.parcel-cache
75+
76+
# Next.js build output
77+
.next
78+
79+
# Nuxt.js build / generate output
80+
.nuxt
81+
dist
82+
83+
# Gatsby files
84+
.cache/
85+
public
86+
87+
# Storybook build outputs
88+
.out
89+
.storybook-out
90+
91+
# Temporary folders
92+
tmp/
93+
temp/
94+
95+
# Logs
96+
logs
97+
*.log
98+
99+
# OS generated files
100+
.DS_Store
101+
.DS_Store?
102+
._*
103+
.Spotlight-V100
104+
.Trashes
105+
ehthumbs.db
106+
Thumbs.db
107+
108+
# Editor directories and files
109+
.vscode/*
110+
!.vscode/extensions.json
111+
.idea
112+
*.swp
113+
*.swo
114+
*~
115+
116+
# Replit specific (keep .replit for configuration)
117+
# But exclude temporary files
118+
.breakpoints
119+
.upm/
120+
121+
# ML model files (if large)
122+
*.h5
123+
*.pb
124+
*.ckpt
125+
models/
126+
127+
# Test output
128+
test-results/
129+
coverage/
130+
131+
# Package archives
132+
*.tgz
133+
*.tar.gz
134+
*.zip

0 commit comments

Comments
 (0)