forked from civictheme/monorepo-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
71 lines (60 loc) · 1.76 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
# To ignore OS temporary files use global .gitignore
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
# Ignore Drupal docroot, but preserve custom modules, themes and settings.
# To add an override file, explicitly un-ignore it below and add to the
# repository (useful for robots.txt and .htaccess file overrides).
docroot/*
!docroot/sites/
docroot/sites/*
!docroot/modules/
docroot/modules/*
!docroot/modules/custom/
!docroot/themes/
docroot/themes/*
!docroot/themes/custom/
!docroot/themes/contrib/
docroot/themes/contrib/*
!docroot/themes/contrib/civictheme
!docroot/profiles/
docroot/profiles/*
!docroot/profiles/custom/
!docroot/sites/default/
docroot/sites/default/*
!docroot/sites/default/settings.php
!docroot/sites/default/services.yml
!docroot/sites/default/default.settings.local.php
!docroot/sites/default/default.services.local.yml
!docroot/sites/default/includes
# Preserve default settings files to use them in Functional test.
!docroot/sites/default/default.settings.php
!docroot/sites/default/default.services.yml
# Whitelist scaffold files. @see https://github.com/drupal-composer/drupal-scaffold#limitation
!docroot/.editorconfig
!docroot/.eslintignore
!docroot/.gitattributes
!docroot/.htaccess
!docroot/autoload.php
!docroot/index.php
!docroot/robots.txt
!docroot/update.php
# Ignore dependencies cache files.
vendor
node_modules
# Assets.
docroot/themes/**/build
screenshots
test_reports
.data
# Ignore local override files.
docker-compose.override.yml
.env.local
# Ignore configuration as this site is installed from profile.
/config/*
# Ignore generated theme.
docroot/themes/custom
.ahoy.local.yml
# Ignore FE lock files. Do not ignore in distributions as they could be required
# by the consumer sites.
package-lock.json
auth.json
.gitempty