From 83b29a777a38cd220cea59d0c0d2b9064fdd6963 Mon Sep 17 00:00:00 2001 From: Hajar RAHMOUNI Date: Mon, 25 Sep 2023 14:34:41 +0200 Subject: [PATCH] Ignore data folder --- .gitignore | 4 +++- .idea/.gitignore | 8 -------- docker-compose.yml | 2 +- 3 files changed, 4 insertions(+), 10 deletions(-) delete mode 100644 .idea/.gitignore diff --git a/.gitignore b/.gitignore index 5f3b374..60338bf 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ # Node.js dependencies node_modules/ # IDE -.idea/ \ No newline at end of file +.idea/ +# MongoDB +.data/ \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/docker-compose.yml b/docker-compose.yml index c443e3c..0f994b1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,4 +16,4 @@ services: ports: - 3000:3000 volumes: - - ./api:/api + - ./:/api -- GitLab