From 547ab383df0054fb4125c785b7e033b7f34b68af Mon Sep 17 00:00:00 2001 From: Federico Date: Tue, 10 Dec 2024 02:48:05 +0100 Subject: [PATCH] Aggiungi file .gitignore per escludere directory e file non necessari --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1375567 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Ignore node_modules directory in the client dashboard to avoid committing dependencies +/client/dashboard/node_modules +# Ignore build directory in the client dashboard to avoid committing build artifacts +/client/dashboard/build +# Ignore all __pycache__ directories +**/__pycache__/ +# Ignore Video directory to avoid committing video files +/Video/ \ No newline at end of file