-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
71 lines (56 loc) · 1.24 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
68
69
70
71
# Ignore Composer dependencies in the lumen directory
/lumen/vendor/
# Ignore Node.js modules (if any)
/node_modules/
# Ignore environment variables and sensitive files in the lumen directory
/lumen/.env
/lumen/.env.*.backup
# Lumen-specific files to ignore
/lumen/storage/*.key
/lumen/public/storage
/lumen/homestead.yaml
/lumen/homestead.json
/lumen/.vagrant
/lumen/.phpunit.result.cache
# Log files and caches in the lumen directory
/lumen/storage/logs
/lumen/storage/framework/cache
/lumen/storage/framework/sessions
/lumen/storage/framework/views
/lumen/storage/debugbar
/lumen/storage/app/public
# Generated application cache files in the lumen directory
/lumen/bootstrap/cache/*.php
# Composer PHAR (if present)
composer.phar
# IDE and Editor files
/.idea/
/.vscode/
*.sublime-project
*.sublime-workspace
*.swp
*~
# OS-specific files
.DS_Store
Thumbs.db
# NPM/Yarn Dependencies
/node_modules/
/npm-debug.log*
/yarn-debug.log*
/yarn-error.log*
/.pnpm-debug.log*
# Build directories (if any)
/dist/
/build/
# Tailwind CSS generated files
*.css.map
# Logs
*.log
# Coverage reports (if any)
/coverage/
# Front-end static site build artifacts (if applicable)
/static-site/node_modules/
/static-site/dist/
/static-site/build/
# Other
/selenium-debug.log