Aggiungi file .gitignore per escludere directory e file non necessari

This commit is contained in:
Federico 2024-12-10 02:48:05 +01:00
parent abd8c38f70
commit 547ab383df

8
.gitignore vendored Normal file
View File

@ -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/