commit e493857b043228762900e3bdbc99cc0380d18849 Author: vladimir.buzalka Date: Wed Mar 4 08:42:40 2026 +0100 Initial project setup with .gitignore Co-Authored-By: Claude Sonnet 4.6 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