-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
85 lines (76 loc) · 1.77 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
# Ignore directories generated by Composer
/console/
/drush/contrib/
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/profiles/custom/
/web/libraries/
# Ignore sensitive information
/web/sites/*/settings.php
/web/sites/*/settings.local.php
# Ignore paths that may contain temporary files
/web/sites/*/translations
/web/sites/*/tmp
/web/sites/*/cache
# Ignore Drupal's file directory
/web/sites/*/files/
/web/sites/*/public
/web/sites/*/private
/web/sites/*/files-public
/web/sites/*/files-private
# Ignore SimpleTest multi-site environment.
/web/sites/simpletest
# Ignore drupal core (if not versioning drupal sources)
/web/modules/README.txt
/web/profiles/README.txt
/web/sites/README.txt
/web/sites/example.sites.php
/web/sites/example.settings.local.php
/web/sites/development.services.yml
/web/sites/default/default.settings.php
/web/sites/default/default.services.yml
/web/sites/sites.php
/web/themes/README.txt
/web/vendor
/web/.csslintrc
/web/.editorconfig
/web/.eslintignore
/web/.eslintrc.json
/web/.gitattributes
/web/.htaccess
/web/.ht.router.php
/web/autoload.php
/web/composer.json
/web/composer.lock
/web/example.gitignore
/web/index.php
/web/INSTALL.txt
/web/LICENSE.txt
/web/README.txt
/web/robots.txt
/web/update.php
/web/web.config
# Ignore favicons scaffolded by AZ Quickstart
/web/android-chrome-192x192.png
/web/android-chrome-512x512.png
/web/apple-touch-icon.png
/web/browserconfig.xml
/web/favicon-16x16.png
/web/favicon-32x32.png
/web/favicon.ico
/web/mstile-70x70.png
/web/mstile-144x144.png
/web/mstile-150x150.png
/web/mstile-310x150.png
/web/mstile-310x310.png
/web/safari-pinned-tab.svg
/web/site.webmanifest
# Ignore files generated by PhpStorm
/.idea/
# Ignore DDEV files
/.ddev/
# Ignore .env files as they are personal
/.env