-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
95 lines (76 loc) · 1.35 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
86
87
88
89
90
91
92
93
94
95
*.db
.DS_Store
*~
._*
/notes.md
# IDE Files
#-------------------------
# Eclipse
.cache
.settings
.buildpath
.project
# Netbeans
/nbproject
# VS Code
.vscode/
## Sublime Text cache files
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
*.sublime-project
# Don't commit composer.phar, executables, or the .phar our build tool generates
*.phar
chromedriver
# Don't commit composer lock file
**/composer.lock
# composer installed dependencies
**/vendor/*
# Robo config
/.robo/config/*.config
/.robo/parts/htaccess/*-development
# Deploy
**/deploy/*
# Sass
**/.sass-cache/*
# Phinx
/phinx.yml
/phinx.json
/phinx.php
# Generate Docs
#------------------------
docs_src/_*
# Config
#------------------------
application/config/config.php
application/config/database.php
application/config/email.php
/config.php
/.htaccess
/.user.ini
/public/uploads/*
!/public/uploads/.gitkeep
#
#-------------------------
application/cache/*
!application/cache/index.html
!application/cache/.htaccess
application/logs/*
!application/logs/index.html
!application/logs/.htaccess
application/tmp/*
!application/tmp/index.html
!application/tmp/.htaccess
# Tests
#------------------------
tests/_output/*
tests/*.suite.yml
tests/_support/_generated/
tests/_data/scenarios/
tests/_emails/*
# Data Files
#------------------------
data/*
!data/.htaccess
!data/index.php