2aa0082743
Добавить входную точку CLI, конфигурацию через .env и базовую документацию для быстрого локального запуска.
28 lines
292 B
Plaintext
28 lines
292 B
Plaintext
# Python cache and bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# Environment files
|
|
.env
|
|
|
|
# Build and packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Test and tool caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# IDE and OS files
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
.cursor
|