forked from lonnieezell/Bonfire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
63 lines (52 loc) · 1.18 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
# Ignore OS Related/Generic
Thumbs.db
Desktop.ini
._*
Icon?
.DS_Store
*.bak
*.tmproj
*.tmproject
*~
# IDEs project files/settings
nbproject/
nbactions.xml
.settings/
.project
.metadata
.properties
# Ignore Bonfire Application Specifics
application/logs/*
!application/logs/index.html
install/logs/*
application/cache/*
!application/cache/index.html
public/assets/cache/*
!public/assets/cache/index.html
# Ignore Custom config files
application/config/development/*
application/config/testing/*
application/config/production/*
application/config/installed.txt
# but leave the config folders there
!application/config/development/index.html
!application/config/testing/index.html
!application/config/production/index.html
# Helping GUIs omiting subtree repos
bonfire/modules/**/.git/*
bonfire/modules/**/.hg/*
application/modules/**/.git/*
application/modules/**/.hg/*
!application/modules/index.html
# Ignore all custom modules.
application/modules/*
# Except the following modules:
# Remove PHPStorm Project folders
bonfire/.ideas
.idea/*
# Ignore the installed.txt file
public/install/installed.txt
# Ignore any composer downloaded packages
vendor/*
# Ignore any sparks that have been loaded
sparks/*