-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
66 lines (61 loc) · 1.31 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
# gitignore template for Drupal 8 projects
#
# earlier versions of Drupal are tracked in `community/PHP/`
#
# follows official upstream conventions:
# https://www.drupal.org/docs/develop/using-composer
# 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 drupal core (if not versioning drupal sources)
web/vendor
web/core
web/modules/README.txt
web/modules/contrib
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/themes/contrib
web/.csslintrc
web/.editorconfig
web/.eslintignore
web/.eslintrc.json
.gitattributes
web/.htaccess
web/.ht.router.php
web/autoload.php
web/index.php
web/INSTALL.txt
web/LICENSE.txt
web/README.md
web/robots.txt
web/update.php
web/web.config
web/example.gitignore
# Ignore vendor dependencies and scripts
/vendor
/composer.phar
/composer
/robo.phar
/robo
/drush.phar
/drush
/drupal.phar
/drupal
# Editor related files
.editorconfig
.vs
.vscode