-
Notifications
You must be signed in to change notification settings - Fork 14
/
.gitignore
62 lines (56 loc) · 1.54 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
# To ignore OS temporary files use global .gitignore
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
# Ignore Drupal web, 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).
web/*
!web/sites/
web/sites/*
!web/modules/
web/modules/*
!web/modules/custom/
!web/themes/
web/themes/*
!web/themes/contrib/
web/themes/contrib/*
!web/themes/contrib/civictheme
web/themes/contrib/civictheme/lib/uikit
!web/themes/custom/
web/themes/custom/*
!web/themes/custom/.gitkeep
!web/profiles/
web/profiles/*
!web/profiles/custom/
!web/sites/default/
web/sites/default/*
!web/sites/default/settings.php
!web/sites/default/services.yml
!web/sites/default/default.settings.local.php
!web/sites/default/default.services.local.yml
!web/sites/default/includes
# Preserve default settings files to use them in Functional test.
!web/sites/default/default.settings.php
!web/sites/default/default.services.yml
# Whitelist scaffold files. @see https://github.com/drupal-composer/drupal-scaffold#limitation
!web/.editorconfig
!web/.eslintignore
!web/.gitattributes
!web/.htaccess
!web/autoload.php
!web/index.php
!web/robots.txt
!web/update.php
# Ignore dependencies cache files.
/vendor
/node_modules
web/themes/**/node_modules
# Assets.
web/themes/**/build
.data
.logs
# Ignore local override files.
docker-compose.override.yml
.env.local
.ahoy.local.yml
# Ignore configuration as this site is installed from profile.
/config/*