Skip to content

Commit 979f546

Browse files
committed
🚀 Initialize Modulite
0 parents  commit 979f546

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+13478
-0
lines changed

.gitignore

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Dependencies
2+
/vendor/
3+
/node_modules/
4+
5+
# Composer
6+
composer.phar
7+
composer.lock
8+
9+
# Package files
10+
*.zip
11+
*.tar.gz
12+
*.tar.bz2
13+
*.rar
14+
15+
# Logs
16+
*.log
17+
/storage/logs/
18+
/bootstrap/cache/
19+
20+
# Environment files
21+
.env
22+
.env.*
23+
!.env.example
24+
25+
# IDE files
26+
/.vscode/
27+
/.idea/
28+
*.swp
29+
*.swo
30+
*~
31+
32+
# OS generated files
33+
.DS_Store
34+
.DS_Store?
35+
._*
36+
.Spotlight-V100
37+
.Trashes
38+
ehthumbs.db
39+
Thumbs.db
40+
41+
# Mac specific
42+
.AppleDouble
43+
.LSOverride
44+
.DocumentRevisions-V100
45+
.fseventsd
46+
.TemporaryItems
47+
.VolumeIcon.icns
48+
.com.apple.timemachine.donotpresent
49+
50+
# Windows specific
51+
desktop.ini
52+
$RECYCLE.BIN/
53+
*.cab
54+
*.msi
55+
*.msm
56+
*.msp
57+
*.lnk
58+
59+
# Linux specific
60+
*~
61+
.directory
62+
63+
# PHP
64+
/.phpunit.cache
65+
/phpunit.xml
66+
/coverage/
67+
/.phpunit.result.cache
68+
69+
# Testing
70+
/tests/temp/
71+
/tests/coverage/
72+
/build/
73+
74+
# Cache
75+
/bootstrap/cache/
76+
/.php-cs-fixer.cache
77+
/.psalm/
78+
79+
# Package development
80+
/docs/_site/
81+
/.sass-cache/
82+
83+
# Laravel specific (for test apps)
84+
/public/hot
85+
/public/storage
86+
/storage/*.key
87+
88+
# Backup files
89+
*.bak
90+
*.backup
91+
*.old
92+
*.orig
93+
94+
# Temporary files
95+
*.tmp
96+
*.temp

0 commit comments

Comments
 (0)