-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore copy
62 lines (57 loc) · 1.12 KB
/
.gitignore copy
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
# 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
sites/*/*settings*.php
sites/*/*services*.yml
# Ignore paths that may contain user-generated content
sites/*/files
sites/*/public
sites/*/private
sites/*/files-public
sites/*/files-private
# Ignore paths that may contain temporary files
sites/*/translations
sites/*/tmp
sites/*/cache
# Ignore drupal core (if not versioning drupal sources)
vendor
core
modules/README.txt
profiles/README.txt
sites/development.services.yml
sites/example.settings.local.php
sites/example.sites.php
sites/README.txt
themes/README.txt
.csslintrc
.editorconfig
.eslintignore
.eslintrc.json
.gitattributes
.htaccess
.ht.router.php
autoload.php
composer.json
composer.lock
example.gitignore
index.php
INSTALL.txt
LICENSE.txt
README.txt
robots.txt
update.php
web.config
# Ignore vendor dependencies and scripts
/vendor
/composer.phar
/composer
/robo.phar
/robo
/drush.phar
/drush
/drupal.phar
/drupal