-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
79 lines (64 loc) · 1.44 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
# Ignore directories generated by Composer
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
# Ignore sensitive information
/web/sites/*/settings.local.php
# Ignore node libraries.
web/modules/custom/*/node_modules
web/modules/custom/*/yarn.lock
web/themes/custom/*/node_modules
web/themes/custom/*/yarn.lock
# Ignore Drupal's file directory
/web/sites/*/files/
#Ignore acme.json file as it constantly being regenerated.
acme.json
# Ignore SimpleTest multi-site environment.
/web/sites/simpletest
# Ignore docker files.
.docker-sync
docker-sync.yml
docker-compose.override.yml
# Ignore files generated by PhpStorm
/.idea/
# Ignore files generated by VS Code
.vscode
# Ignore .env files as they are personal
/.env
# Ignore linux backup files
*~
# Ignore Mac DS files
*.DS_Store
# Default drupal ignore.
#/web/.htaccess
#/web/robots.txt
/web/.csslintrc
/web/.editorconfig
/web/.eslintignore
/web/.eslintrc.json
/web/.gitattributes
/web/.ht.router.php
/web/autoload.php
/web/example.gitignore
/web/index.php
/web/INSTALL.txt
/web/LICENSE.txt
/web/README.txt
/web/README.md
/web/update.php
/web/web.config
/web/modules/README.txt
/web/profiles/README.txt
/web/themes/README.txt
/web/sites/README.txt
# Exclude all DB dumps due to security reasons.
db/*.sql
db/*.sql.gz
!db/default_*.sql.gz
# Exclude crontab file because it must belong to root user.
crontab
# Exclude local drush configs.
/drush/local.drush.yml