-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitignore
51 lines (39 loc) · 937 Bytes
/
.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
# Ignores text editor metadata
*.komodoproject
.editorconfig
.vscode
# Ignores Mac metadata. You can configure this globally if you use a Mac: http://islegend.com/development/setting-global-gitignore-mac-windows/
.DS_Store
# Ignore developer resources
_meta/
# Ignore personal config files (dev)
public/.env
# Ignore lock files
composer.lock
# Ignore log, cache, sessions and storage directories
public/cache/*
public/database/*
public/logs/*
public/sessions/*
public/storage/*
# Unignore log, cache, sessions and storage .gitkeeps
!public/cache/.gitkeep
!public/database/.gitkeep
!public/logs/.gitkeep
!public/sessions/.gitkeep
!public/storage/.gitkeep
# Ignore Composer vendor
vendor/
# Ignore node modules
node_modules/
# Ignore compiled assets
public/assets/
# Ignore Vagrant & Homestead VM
vagrant/Homestead/
.vagrant/
# Ignore dev utility cache
.phpunit.result.cache
.phpunit.cache
.php_cs.cache
# Ignore api doc
api/