forked from finnef/lando-drupal8-test-debugging
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
97 lines (83 loc) · 1.63 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
96
97
# Ignore directories generated by composer, for temporary ir user-generated files
/files/private/
/log/
/tmp/
/vendor/
# Ignore Drupal directories
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
/web/sites/simpletest/
/drush/contrib/
# Ignore Drupal files
/web/modules/README.txt
/web/profiles/README.txt
/web/sites/development.services.yml
/web/sites/example.settings.local.php
/web/sites/example.sites.php
/web/sites/README.txt
/web/themes/README.txt
/web/autoload.php
/web/example.gitignore
/web/index.php
/web/INSTALL.txt
/web/LICENSE.txt
/web/README.txt
/web/update.php
# Ignore project / environment specific information
/web/.csslintrc
/web/.editorconfig
/web/.eslintignore
/web/.eslintrc.json
/web/.gitattributes
/web/.htaccess
/web/.ht.router.php
/web/web.config
/web/robots.txt
/web/composer.json
/web/composer.lock
# Ignore configuration files that may contain sensitive information
/web/sites/*/*settings*.php
/web/sites/*/*services*.yml
# Ignore paths that may contain user-generated content
/web/sites/*/files
/web/sites/*/public
/web/sites/*/private
/web/sites/*/files-public
/web/sites/*/files-private
# Ignore paths that may contain temporary files
/web/sites/*/translations
/web/sites/*/tmp
/web/sites/*/cache
# Ignore .env files as they are personal
/.env
# Ignore other configurations
/.editorconfig
/.gitattributes
# Ignore IDE specific files
/.history/
/.idea/
*.iml
*.code-workspace
# Ignore all log files
*.log
# Ignore node modules
node_modules
# Ignore css maps
*.css.map
# Ignore local db-dumps
*.sql
*.sql*
# Ignore Packages
*.7z
*.dmg
*.gz
*.bz2
*.iso
*.jar
*.rar
*.tar
*.zip
*.tgz