-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
97 lines (80 loc) · 1.7 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
86
87
88
89
90
91
92
93
94
95
96
97
# Ignore Composer Vender
/vendor/
# Ingore Env Files
.env
# Ignore testing related files
/web/sites/simpletest
# Ignore core
/web/core
# Ignore contrib modules and themes
/web/modules/contrib
/web/themes/contrib
# Ignore README, LICENSE and INSTALL files
/web/modules/README.txt
/web/profiles/README.txt
/web/themes/README.txt
/web/sites/README.txt
/web/README.md
/web/LICENSE.txt
/web/INSTALL.txt
# Ignore Drupal dev settings files
/web/.csslintrc
/web/.editorconfig
/web/.eslintignore
/web/.eslintrc.json
/web/.gitattributes
/web/example.gitignore
# Ignore Apache and IIS Server settings files
/web/web.config
/web/.htaccess
# Ignore Drupal root files
/web/update.php
/web/robots.txt
/web/index.php
/web/autoload.php
/web/.ht.router.php
# Ignore paths that may contain temporary files
/web/sites/*/translations
/web/sites/*/tmp
/web/sites/*/cache
# 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 configuration files that may contain sensitive information
/web/sites/*/default.services.yml
/web/sites/*/default.settings.php
/web/sites/example.settings.local.php
/web/sites/example.sites.php
# Ignore MacOS Files
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Ingore Linux Files
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*
# Ignore site installation settings
site-install.txt
# Ignore custom modules and themes
# Each theme and module will have a proper repo
/web/modules/custom
/web/themes/custom