Initial commit: Add .gitignore
This commit is contained in:
55
.gitignore
vendored
Normal file
55
.gitignore
vendored
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
*.so
|
||||||
|
.Python
|
||||||
|
|
||||||
|
# Virtual environments
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
ENV/
|
||||||
|
embedding_env/
|
||||||
|
parser_env/
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
*.log
|
||||||
|
logs/
|
||||||
|
*.log.*
|
||||||
|
|
||||||
|
# Excel отчёты (их много генерится)
|
||||||
|
*.xlsx
|
||||||
|
*.xls
|
||||||
|
audit_*.csv
|
||||||
|
|
||||||
|
# HTML дампы
|
||||||
|
*.html
|
||||||
|
debug_*.py
|
||||||
|
|
||||||
|
# Кеш и временные файлы
|
||||||
|
.cache/
|
||||||
|
*.tmp
|
||||||
|
*.temp
|
||||||
|
|
||||||
|
# Notebook checkpoints
|
||||||
|
.ipynb_checkpoints/
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
|
# OS
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Данные и чувствительная информация
|
||||||
|
API_KEY.txt
|
||||||
|
NATASHA_API_KEY.txt
|
||||||
|
*.env
|
||||||
|
|
||||||
|
# Build
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.egg-info/
|
||||||
Reference in New Issue
Block a user