-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
56 lines (45 loc) · 1.41 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
# manage all ignores using only root folder .gitignore
.gitignore
!/.gitignore
# TODO: Add ignores from legacy cafpe
lftp_debug.log
lftp_transferred.log
.DS_Store
/tmp
/application/cache/*
!/application/cache/index.html
!/application/cache/.htaccess
/application/database/*
!/application/database/index.html
!/application/database/migrations
!/application/database/seeds
/application/logs/*
!/application/logs/index.html
# remove ioanauth files (they should be installed via composer), except custom config
application/libraries/ionauth
# Remove PHPUnit generated files when testing
application/tests/_ci_phpunit_test/tmp
application/tests/build/coverage
application/tests/build/documentation
application/tests/build/logs
application/tests/build/phar
application/tests/build/phpdox
application/tests/build/*.phar
application/tests/build/*.phar.asc
application/tests/results
# Very crazy rules to ignore /vendor, except /vendor/codeigniter/framework/system/
# ref: http://stackoverflow.com/questions/5533050/gitignore-exclude-folder-but-include-specific-subfolder/
/vendor/*
!/vendor/codeigniter/
/vendor/codeigniter/*
!/vendor/codeigniter/framework/
/vendor/codeigniter/framework/*
!/vendor/codeigniter/framework/system/
# Assets
/html/assets/dist
/html/filemanager_contents/uploads/*
!/html/filemanager_contents/uploads/.gitkeep
/html/filemanager_contents/thumbs/*
!/html/filemanager_contents/thumbs/.gitkeep
# Front-End
node_modules/*