From 53e186f8967a961e2f832e1163428c90fb0153f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=24i=D1=85?= Date: Wed, 3 Aug 2022 22:28:22 +0300 Subject: [PATCH] feat: extend ignores --- .dockerignore | 39 ++++++++++++++++++++++++++++++++------- .gitignore | 22 ++++++++++++++++------ 2 files changed, 48 insertions(+), 13 deletions(-) diff --git a/.dockerignore b/.dockerignore index 6f1caf6..1e21915 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,11 +1,36 @@ -# go generations -*.exe - # IDEA project files /.idea +/.run # Visual Studio Code workspace files -/workstations.code-workspace +/.vscode +/golang-app.code-workspace -# directories -/vendor/ -/build/ \ No newline at end of file +# git +/.git +/.gitignore + +# docker +/Dockerfile +/docker-compose.yml +/docker-compose-services.yml + +# tools +/.gitlab-ci.yml +/.golangci.yaml + +# OS +.DS_Store + +# artefacts +*.exe +/bin +/build +/data +/docs +/node_modules +/vendor + +# environment +/.env +/.env.docker +/config.yaml \ No newline at end of file diff --git a/.gitignore b/.gitignore index 557f4c0..5e5e389 100644 --- a/.gitignore +++ b/.gitignore @@ -4,11 +4,21 @@ # IDEA project files /.idea # Visual Studio Code workspace files -/workstations.code-workspace +/.vscode +/golang-app.code-workspace -# directories -/vendor/ -/build/ +# OS +.DS_Store -.env -.env.docker +# artefacts +*.exe +/bin +/build +/data +/node_modules +/vendor + +# environment +/.envenv +/.env.docker +/config.yaml