-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
.gitignore.artifact
37 lines (31 loc) · 1 KB
/
.gitignore.artifact
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
# Replaces standard .gitignore when building a deployment artifact.
# Ignore all files except those specifically allowed.
/*
# Do not ignore required files.
!/config/
!/scripts/
!/vendor/
!composer.json
!.env
# Do not ignore webroot (manage Drupal Scaffold files using the composer.json)
!web
# But ignore content files and test artifacts.
web/sites/default/files
web/sites/simpletest
# Ignore non-production Drupal Scaffold files.
web/sites/default/default.services.local.yml
web/sites/default/default.settings.local.php
# Ignore custom theme asset sources.
web/themes/custom/your_site_theme/fonts
web/themes/custom/your_site_theme/images
web/themes/custom/your_site_theme/js
web/themes/custom/your_site_theme/scss
web/themes/custom/your_site_theme/Gruntfile.js
web/themes/custom/your_site_theme/package.json
web/themes/custom/your_site_theme/package-lock.json
web/themes/custom/your_site_theme/.eslintrc.json
web/themes/custom/your_site_theme/node_modules
#;< ACQUIA
# Do not ignore Acquia hooks.
!/hooks/
#;> ACQUIA