Skip to content

Commit 26309a2

Browse files
Create .gitignore
1 parent 56a9923 commit 26309a2

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed

.gitignore

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# ----------------------------------------
2+
# Java Build & Class Files
3+
# ----------------------------------------
4+
*.class
5+
*.jar
6+
*.war
7+
*.ear
8+
9+
# Ignore compiled output directories
10+
/bin/
11+
/out/
12+
/target/
13+
14+
# ----------------------------------------
15+
# Environment Variables (DO NOT COMMIT)
16+
# ----------------------------------------
17+
.env
18+
.env.*
19+
*.env
20+
21+
# Example credentials file for database configs
22+
/db_credentials.txt
23+
24+
# ----------------------------------------
25+
# IDE Files
26+
# ----------------------------------------
27+
28+
# VS Code
29+
.vscode/
30+
31+
# IntelliJ IDEA / JetBrains
32+
.idea/
33+
*.iml
34+
*.ipr
35+
*.iws
36+
37+
# Eclipse
38+
.project
39+
.classpath
40+
.settings/
41+
bin/
42+
43+
# NetBeans
44+
nbproject/private/
45+
build/
46+
nbbuild/
47+
dist/
48+
nbdist/
49+
.nbm/
50+
51+
# ----------------------------------------
52+
# Operating System Files
53+
# ----------------------------------------
54+
55+
# macOS
56+
.DS_Store
57+
.AppleDouble
58+
.LSOverride
59+
60+
# Windows
61+
Thumbs.db
62+
ehthumbs.db
63+
Desktop.ini
64+
65+
# Linux
66+
*~
67+
68+
# ----------------------------------------
69+
# Logs & Temp Files
70+
# ----------------------------------------
71+
*.log
72+
*.tmp
73+
*.temp
74+
75+
# ----------------------------------------
76+
# Node (if editor plugins create it)
77+
# ----------------------------------------
78+
node_modules/
79+
80+
# ----------------------------------------
81+
# Screenshots Cache (optional)
82+
# ----------------------------------------
83+
/screenshots/*.tmp

0 commit comments

Comments
 (0)