forked from VMLYR/Drupal-KIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
84 lines (69 loc) · 2.01 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
# Ignore directories generated by Composer
/drush/Commands/contrib/
/vendor/
/docroot/core/
/docroot/modules/contrib/
/docroot/themes/contrib/
/docroot/profiles/contrib/
/docroot/libraries/
# Ignore sensitive and environment-specific information
/docroot/sites/default/settings.php
/docroot/sites/*/settings.docksal.php
/docroot/sites/*/settings.local.php
# Ignore Drupal's file directory
/docroot/sites/*/files/
# Ignore robots.txt since it's generated by the robotstxt Drupal module
/docroot/robots.txt
# Ignore hashsalt file since it's generated every time scaffold is ran.
/config/salt.txt
# Ignore Drupal scaffold files
/.editorconfig
/.gitattributes
/docroot/sites/development.services.yml
/docroot/sites/example.settings.docksal.php
/docroot/sites/example.settings.local.php
/docroot/sites/example.sites.php
/docroot/sites/default/default.services.yml
/docroot/sites/default/default.settings.php
/docroot/.htaccess
/docroot/.csslintrc
/docroot/.editorconfig
/docroot/.eslintignore
/docroot/.eslintrc.json
/docroot/.gitattributes
/docroot/.ht.router.php
/docroot/web.config
/docroot/autoload.php
/docroot/index.php
/docroot/update.php
# Ignore database backup/dump folder
/database_backups/
# Ignore SimpleTest multi-site environment.
/docroot/sites/simpletest
# Ignore files generated by PhpStorm
/.idea/
# Ignore files generated by Mac OS
.DS_Store
/*/.DS_Store
# Ignore .env files as they are personal
/.env
# Ignore any node modules directories
node_modules
# Ignore any generated theme files
/docroot/themes/custom/*/css/
/docroot/themes/custom/*/fonts/icons
/docroot/themes/custom/*/icons/
/docroot/themes/custom/*/images/
/docroot/themes/custom/*/js/
/source/themes/custom/*/styles/vendor/_icons.scss
# Ignore docksal kit commands
/.docksal/commands/kit
# Ignore logs directory from Lando
logs
# FOR TESTING PURPOSES ONLY
/docroot/themes/custom/biplane/
/docroot/themes/custom/blackbird/
/docroot/themes/custom/blackbirdtheme/
/source/themes/custom/biplane/
/source/themes/custom/blackbird/
/source/themes/custom/blackbirdtheme/