-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
55 lines (39 loc) · 1.04 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
# Ignores my text editor metadata
*.komodoproject
# 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
app/composer.lock
app/composer.phar
# Ignore log, cache, and sessions directories
app/cache/*
app/logs/*
app/sessions/*
# Ignore bower vendor assets
/app/sprinkles/*/assets/vendor/
# Ignore sprinkles.json config file
app/sprinkles/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