Skip to content

Commit ebfc7cc

Browse files
Add .gitignore to exclude sensitive and build files
1 parent be9eafc commit ebfc7cc

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# PHP
2+
/vendor/
3+
composer.lock
4+
.env
5+
.env.local
6+
.env.production
7+
*.log
8+
9+
# IDE & system
10+
.idea/
11+
.vscode/
12+
.DS_Store
13+
Thumbs.db
14+
15+
# Cache
16+
cache/
17+
tmp/
18+
*.bak
19+
*.swp
20+
21+
# Node / Frontend
22+
node_modules/
23+
dist/
24+
build/
25+
26+
# Sensitive project data
27+
config.php
28+
db.php
29+
uploads/
30+
keys/
31+
secrets/

0 commit comments

Comments
 (0)