-
-
Notifications
You must be signed in to change notification settings - Fork 365
/
Copy path.gitignore
45 lines (34 loc) · 812 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
# 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
# Ignore lock files
composer.lock
# Ignore log, cache, sessions and storage directories
app/cache/*
app/database/*
app/logs/*
app/sessions/*
app/storage/*
# Unignore log, cache, sessions and storage .gitkeeps
!app/cache/.gitkeep
!app/database/.gitkeep
!app/logs/.gitkeep
!app/sessions/.gitkeep
!app/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.cache
.php_cs.cache
# Ignore api doc
api/