-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
61 lines (49 loc) · 1.08 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
# Ignores text editor metadata
.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)
app/.env
public/.env
# Ignore lock files
composer.lock
# Ignore log, cache, sessions and storage directories
app/cache/*
app/database/*
app/logs/*
app/sessions/*
app/storage/*
public/cache/*
public/database/*
public/logs/*
public/sessions/*
public/storage/*
# Unignore log, cache, sessions and storage .gitkeeps
!app/cache/.gitkeep
!app/database/.gitkeep
!app/logs/.gitkeep
!app/sessions/.gitkeep
!app/storage/.gitkeep
!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/