Создание кода

This commit is contained in:
Nikolaev Misha
2025-12-22 22:35:23 +03:00
parent a5b0faa48c
commit 7c8f9db15d
9 changed files with 732 additions and 0 deletions

55
.gitignore vendored Normal file
View File

@@ -0,0 +1,55 @@
# ===============================
# Python
# ===============================
__pycache__/
*.py[cod]
*.pyo
*.pyd
# ===============================
# Virtual environments
# ===============================
.venv/
venv/
ENV/
# ===============================
# IDE (PyCharm / IntelliJ)
# ===============================
.idea/
*.iml
.gigaide/
# ===============================
# OS
# ===============================
.DS_Store
Thumbs.db
# ===============================
# Project-specific (inside src/)
# ===============================
src/artifacts/
src/data/
# ===============================
# Logs
# ===============================
*.log
# ===============================
# Temporary / backup files
# ===============================
*.tmp
*.bak
*.swp
# ===============================
# Jupyter
# ===============================
.ipynb_checkpoints/
# ===============================
# CUDA cache (optional)
# ===============================
.cuda/