diff options
| author | 2020-03-24 15:31:14 +0100 | |
|---|---|---|
| committer | 2020-03-24 15:31:14 +0100 | |
| commit | cdbf401ccab34132c850e5c9734cef75c6f3cb3d (patch) | |
| tree | 9cbdcf5206cab4ad13648cb04094e64e414c52cb | |
| parent | a7b72481e7cbc14d729f85816b6851ee6fcf711c (diff) | |
More gitignore and dockerignore (#2844)
Add to gitignore and dockerignore some additional files created by the
different tests we have
| -rw-r--r-- | .dockerignore | 3 | ||||
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Docker/.gitignore | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/.dockerignore b/.dockerignore index fa42e0e9c..80e336989 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,6 @@ **/.git/ +**/bin/ **/data/ **/docs/ +**/node_modules/ +**/package*.json diff --git a/.gitignore b/.gitignore index 2fd0ee2c5..55f9305d5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ /bin +/node_modules +package*.json constants.local.php # Temp files diff --git a/Docker/.gitignore b/Docker/.gitignore new file mode 100644 index 000000000..7a7d633f1 --- /dev/null +++ b/Docker/.gitignore @@ -0,0 +1 @@ +env.txt |
