mirror of
https://github.com/basnijholt/compose-farm.git
synced 2026-02-03 06:03:25 +00:00
A minimal CLI tool to run docker compose commands across multiple hosts via SSH. Features: - Pydantic config parsing (hosts, services mapping) - asyncssh for parallel command execution with streaming output - Typer CLI with up, down, pull, restart, update, logs, ps commands - Config search: ./sdc.yaml or ~/.config/sdc/sdc.yaml
41 lines
354 B
Plaintext
41 lines
354 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Testing
|
|
.coverage
|
|
.pytest_cache/
|
|
htmlcov/
|
|
|
|
# Local config (don't commit real configs)
|
|
sdc.yaml
|