forked from hardfire/bonfire-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
51 lines (44 loc) · 1.12 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
# 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
bonfire/application/logs/*
!bonfire/application/logs/index.html
bonfire/application/cache/*
!bonfire/application/cache/index.html
assets/cache/*
!assets/cache/index.html
# Ignore Custom config files
bonfire/application/config/database.php
bonfire/application/config/config.php
bonfire/application/config/application.php
bonfire/application/config/email.php
bonfire/application/config/development/*
bonfire/application/config/testing/*
bonfire/application/config/production/*
# but leave the config folders there
!bonfire/application/config/development/index.html
!bonfire/application/config/testing/index.html
!bonfire/application/config/production/index.html
# Helping GUIs omiting subtree repos
bonfire/modules/**/.git/*
bonfire/modules/**/.hg/*
# Ignore all custom modules.
bonfire/modules/*
# Except the following modules:
# Ignore generated Guides and docs cache
docs/guides/*
docs/guides_src/_cache/*