From 31f2de6658314c32b18f650bf1d6df8057b8e596 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Tue, 9 Dec 2025 16:37:31 +1100 Subject: [PATCH] Add gitignore file --- .gitignore | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1e6bf9a --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environment +venv/ +ENV/ +env/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Project specific +logs/ +*.log +videos/trailers/*.mp4 +videos/trailers/*.avi +videos/trailers/*.mov +videos/trailers/*.mkv +videos/specific/*.mp4 +videos/specific/*.avi +videos/specific/*.mov +videos/specific/*.mkv +videos/groupvideos/**/*.mp4 +videos/groupvideos/**/*.avi +videos/groupvideos/**/*.mov +videos/groupvideos/**/*.mkv +videos/folder_state.json + +# Keep directory structure +!videos/trailers/.gitkeep +!videos/specific/.gitkeep +!videos/groupvideos/.gitkeep + +# OS +.DS_Store +Thumbs.db +desktop.ini + +# Backup files +*.bak +*~