From d69cd19e594f8404a003731dfccf40f3f048145d Mon Sep 17 00:00:00 2001 From: Craig Jellick Date: Thu, 29 Feb 2024 14:47:01 -0700 Subject: [PATCH] Ignore common node and python files These are going to start showing up in the examples. If you run the recipegenerator example, you would see these as changes. Signed-off-by: Craig Jellick --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 53eee279..12d2326c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ /bin /.idea /static/ui +**/node_modules/ +**/package-lock.json +**/__pycache__