-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitignore
116 lines (98 loc) · 2.6 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Ignore dependencies that are managed with Composer.
**/vendor/
.ddev/docker-compose.*
/mkdocs/docs
# Ignore configuration files that may contain sensitive information.
/backend_drupal/sites/*/settings*.php
/backend_drupal/sites/*/services*.yml
/backend_drupal/sites/*/settings.platformsh.php
/backend_drupal/*/settings*.php
/backend_drupal/sites/*/services*.yml
# Ignore paths that contain user-generated content.
!/backend_drupal/sites/default/files/
/backend_drupal/sites/default/files/*
!/backend_drupal/sites/default/files/sync
/backend_drupal/sites/*/private
# Ignore directories generated by Composer.
/drush/Commands/contrib/
/backend_drupal/core/
/backend_drupal/modules/contrib/
/backend_drupal/themes/contrib/
/backend_drupal/profiles/contrib/
/backend_drupal/libraries/
# Ignore SimpleTest multi-site environment.
/backend_drupal/sites/simpletest
# Ignore paths that contain user-generated content.
*/files
*/private
# misc
.DS_Store
*.pem
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
# PHPStorm / VSCode
/.idea
/.vscode
# Database backups
*.sql.gz
*.sql
# Resources under the /root folder of the Drupal installation.
/backend_drupal/.csslintrc
/backend_drupal/.editorconfig
/backend_drupal/.eslintignore
/backend_drupal/.eslintrc.json
/backend_drupal/.gitattributes
/backend_drupal/.ht.router.php
/backend_drupal/.htaccess
/backend_drupal/INSTALL.txt
/backend_drupal/README.txt
/backend_drupal/README.md
/backend_drupal/autoload.php
/backend_drupal/example.gitignore
/backend_drupal/index.php
/backend_drupal/robots.txt
/backend_drupal/update.php
/backend_drupal/web.config
/backend_drupal/modules/README.txt
/backend_drupal/profiles/README.txt
/backend_drupal/sites/README.txt
/backend_drupal/sites/default/default.services.yml
/backend_drupal/sites/default/default.settings.php
/backend_drupal/sites/development.services.yml
/backend_drupal/sites/example.settings.local.php
/backend_drupal/sites/example.sites.php
/backend_drupal/themes/README.txt
/.csslintrc
/.eslintignore
/.eslintrc.json
/.ht.router.php
/.htaccess
/INSTALL.txt
/autoload.php
/example.gitignore
/index.php
/robots.txt
/update.php
/web.config
## Frontend React zone.
# dependencies
/frontend_react/node_modules
/frontend_react/.pnp
/frontend_react/.pnp.js
/frontend_react/src/assets
# testing
/frontend_react/coverage
# production
/frontend_react/build
# misc
/frontend_react/.DS_Store
/frontend_react/.env.local
/frontend_react/.env.development.local
/frontend_react/.env.test.local
/frontend_react/.env.production.local
/frontend_react/npm-debug.log*
/frontend_react/yarn-debug.log*
/frontend_react/yarn-error.log*