-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (83 loc) · 2.48 KB
/
.gitignore
File metadata and controls
101 lines (83 loc) · 2.48 KB
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
# Ignore every file and directory, so we can specify precisely which files and directories need to be included.
*
# Descend into directories.
!*/
# Include gitignore file.
!/.gitignore
# Include project readme file.
!/README.md
# Include Drupal config directories.
!/config/**
/config/*/.htaccess
# Include composer file.
!/composer.json
# Ignore Composer owned directories to avoid git submodules.
/vendor
/drupal/core
/drupal/modules/contrib
/drupal/themes/contrib
/drush/Commands/contrib
# Libraries
!/drupal/libraries/amcharts4/**
!/drupal/libraries/leaflet/**
!/drupal/libraries/localfocus/**
!/drupal/libraries/papaparse/**
# Include custom Drupal modules, patches, themes and translations.
!/drupal/modules/custom/**
!/drupal/themes/custom/**
!/patches/*
!/translations/*
# Ignore theme files.
/drupal/themes/custom/**/css
# Include the component lib.
!/drupal/themes/custom/**/componentenbibliotheek/*
# Include SOLR configuration.
!/solr/**
# Include SAML configuration and metadata.
!/saml/**
/saml/environment.*.php
# Make sure to always ignore the following files and directories.
*.orig
bower_components
node_modules
yarn.lock
.DS_Store
# Include assets.
!/assets/**
# Include the Indicia related modules for external use.
!/drupal/modules/indicia/indicia_suite
!/drupal/profiles/indicia/**
# Ignore some specific files which we don't want in our repo.
/config/sync/block.block.*
/config/sync/ckan.dataset.settings.yml
/config/sync/ckan.request.settings.yml
/config/sync/donl.settings.yml
/config/sync/donl_piwik.settings.yml
/config/sync/donl_search.sorl_request.settings.yml
/config/sync/donl_statistics.piwik.settings.yml
/config/sync/donl_value_list.settings.yml
/config/sync/indicia_portals.settings.yml
/config/sync/koop_overheid.settings.yml
/config/sync/system.logging.yml
/config/sync/system.menu.*
/config/sync/system.performance.yml
/config/sync/system.site.yml
/config/sync/ultimate_cron.job.*
/config/sync/webform.webform.*
/config/sync/donl_recent.recent_content_settings.yml
/config/sync/language/*/block.block.*
/config/sync/language/*/koop_overheid.settings.yml
/config/sync/language/*/system.menu.*
/config/sync/language/*/system.site.yml
/config/sync/language/*/ultimate_cron.job.*
/config/sync/language/*/webform.webform.*
# Remove after config rework
/config/sync/ckan.resourcetype.settings.yml
# Specific settings we don't want on github.
/config/acceptance/*
/config/acceptatie/*
/config/development/*
/config/production/*
/config/sync/config_split.config_split.*
/server
phpcs.xml