-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
68 lines (53 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
64
65
66
67
68
# Ignore directories generated by Composer
/drush/contrib/
/vendor/
/bin/
/.composer/
# Ignore drupal code except for the custom modules and themes.
/html/*
!/html/modules/
/html/modules/*
!/html/modules/custom/
!/html/themes/
/html/themes/*
!/html/themes/custom/
# Ignore sensitive information
/html/sites/*/settings.php
/html/sites/*/settings.local.php
/html/sites/*/services.yml
# Ignore .env files as they are personal
/.env
# Ignore Drupal's file directory
/html/sites/*/files/
/html/sites/*/private/
# Ignore SimpleTest multi-site environment.
/html/sites/simpletest
# Ignore node modules.
/node_modules
# Ignore docker image build log.
buildlog.txt
# Ignore local dev directories.
/shared/
/database/
/private/
/notes/
/.idea/
# Ignore local development files.
/local/.env
/local/shared/settings/settings.site.php
# Coverage
/phpcov.phar
/code-coverage-report-clover/
/coverage/
/html/sites/default/browser_output/
###> squizlabs/php_codesniffer ###
/.phpcs-cache
/tests/coverage/
###< squizlabs/php_codesniffer ###
###> phpunit/phpunit ###
.phpunit.result.cache
###< phpunit/phpunit ###
###> symfony/phpunit-bridge ###
.phpunit
.phpunit.result.cache
###< symfony/phpunit-bridge ###