From e493857b043228762900e3bdbc99cc0380d18849 Mon Sep 17 00:00:00 2001 From: "vladimir.buzalka" Date: Wed, 4 Mar 2026 08:42:40 +0100 Subject: [PATCH] Initial project setup with .gitignore Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 31 +++++++++++++++++++ .idea/.gitignore | 3 ++ .idea/DownloadImportantInfo.iml | 10 ++++++ .../inspectionProfiles/profiles_settings.xml | 6 ++++ .idea/modules.xml | 8 +++++ .idea/vcs.xml | 6 ++++ 6 files changed, 64 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/DownloadImportantInfo.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6cc536f --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd + +# Virtual environment +.venv/ +venv/ +env/ + +# Environment variables & secrets +.env +.env.* +*.env + +# Logs +*.log +logs/ + +# PyCharm - workspace.xml a shelf jsou ignorovány v .idea/.gitignore +# Ostatní .idea/ soubory (modules, vcs) jsou sdíleny záměrně + +# Distribution / packaging +dist/ +build/ +*.egg-info/ + +# OS +.DS_Store +Thumbs.db diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/DownloadImportantInfo.iml b/.idea/DownloadImportantInfo.iml new file mode 100644 index 0000000..21059a6 --- /dev/null +++ b/.idea/DownloadImportantInfo.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..f251b41 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file