forked from userfrosting/UserFrosting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
85 lines (62 loc) · 1.52 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# 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)
app/.env
# Ignore composer-generated files
composer.lock
composer.phar
# Ignore log, cache, sessions and storage directories
app/cache/*
app/logs/*
app/sessions/*
app/storage/*
# Unignore log, cache, sessions and storage .gitkeeps
!app/cache/.gitkeep
!app/logs/.gitkeep
!app/sessions/.gitkeep
!app/storage/.gitkeep
# Ignore bower vendor assets
/app/sprinkles/*/assets/vendor/
# Ignore sprinkles.json config file
app/sprinkles.json
# Ignore sample site sprinkle
app/sprinkles/site-dev
# Ignore Composer vendor
app/vendor/*
# Ignore node modules
build/node_modules/*
# Ignore generated bundle schema files
build/bundle.config.json
build/bundle.result.json
# Ignore temporary build assets
build/temp
# Ignore npm-debug.log
build/npm-debug.log
# Ignore compiled assets
public/assets/*
# Ignore minified assets (v0.3.x)
public/js/min/*
public/css/min/*
# Ignore personal config files (v0.3.x)
app/config-userfrosting.php
# Physical database storage for containers (?)
app/database/userfrosting.db
# Ignore vendor assets
app/assets/*
# Ignore Vagrant & Homestead VM
vagrant/Homestead/
.vagrant/*
# Ignore dev utils cache
.phpunit.result.cache
.php_cs.cache
# Ignore api doc
api/
# Igore npm lockfile
build/package-lock.json
build/package.lock