-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
67 lines (50 loc) · 1.22 KB
/
.gitignore
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
# Node.js modules
node_modules/
# Build output (if applicable)
build/
dist/
out/
# Dependency lock files
package-lock.json
yarn.lock
# Testing coverage files
coverage/
# dotenv environment file
.env
server/**/*.env
# Database files
# Adjust the pattern based on your MongoDB setup
# (e.g., for MongoDB Atlas connections, exclude connection string file)
mongodb/*
!public/assets/data.json* # Optional: Allow specific data files in a public directory
# IDE temporary or cache files
.idea/
.vscode/
.eslintcache
# Temporary log files
*.log
# Compiled TypeScript files (if applicable)
*.js # For pure JavaScript projects
*.ts # If using TypeScript
# Editor config files
.editorconfig
# Webpack config (if applicable)
webpack.config.js
# Other editor-specific files
*.sublime-project
*.sublime-workspace
*.swo
# Local history files
.DS_Store
# OS specific temporary files
Thumbs.db
# Optional: Ignore specific test files
__tests__/
*.spec.js
*.test.js
# Optional: Ignore generated documentation files
# Ignore .css & css.map files in /client-remix/app/components
client-remix/app/components/**/*.css
client-remix/app/components/**/*.css.map
client-remix/app/route-css-modules/**/*.css
client-remix/app/route-css-modules/**/*.css.map