diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3983b20 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +__pycache__/ +*.pyc +*.pyo +*.pyd +.pytest_cache/ +.tox/ +.venv/ +venv/ +dist/ +build/ +*.egg-info/ +config.yaml diff --git a/config.yaml b/config.yaml deleted file mode 100644 index 6d1d32b..0000000 --- a/config.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# LoopAware Infra CLI Configuration - -# Proxmox/DNS Management -proxmox: - host: "10.32.2.1" - user: "root" - dnsmasq_lxc_id: "11209" - ssh_key: "~/.ssh/id_ed25519_no_pass" - -# Ingress Management (HAProxy) -haproxy: - host: "10.32.1.20" - user: "root" - ssh_key: "~/.ssh/id_ed25519_no_pass" - config_dir: "/etc/haproxy/conf.d" - dynamic_dir: "/etc/haproxy/dynamic" - -# Router Management (OpenWrt) -router: - host: "10.32.0.1" - user: "root" - ssh_key: "~/.ssh/id_ed25519_no_pass" diff --git a/infra_cli/__pycache__/config.cpython-313.pyc b/infra_cli/__pycache__/config.cpython-313.pyc deleted file mode 100644 index 13a16f4..0000000 Binary files a/infra_cli/__pycache__/config.cpython-313.pyc and /dev/null differ diff --git a/infra_cli/__pycache__/dns.cpython-313.pyc b/infra_cli/__pycache__/dns.cpython-313.pyc deleted file mode 100644 index 04692ce..0000000 Binary files a/infra_cli/__pycache__/dns.cpython-313.pyc and /dev/null differ diff --git a/infra_cli/__pycache__/ingress.cpython-313.pyc b/infra_cli/__pycache__/ingress.cpython-313.pyc deleted file mode 100644 index 5a812f9..0000000 Binary files a/infra_cli/__pycache__/ingress.cpython-313.pyc and /dev/null differ diff --git a/infra_cli/__pycache__/main.cpython-313.pyc b/infra_cli/__pycache__/main.cpython-313.pyc deleted file mode 100644 index c3c6df0..0000000 Binary files a/infra_cli/__pycache__/main.cpython-313.pyc and /dev/null differ diff --git a/infra_cli/__pycache__/router.cpython-313.pyc b/infra_cli/__pycache__/router.cpython-313.pyc deleted file mode 100644 index 777ba63..0000000 Binary files a/infra_cli/__pycache__/router.cpython-313.pyc and /dev/null differ diff --git a/infra_cli/__pycache__/ssh.cpython-313.pyc b/infra_cli/__pycache__/ssh.cpython-313.pyc deleted file mode 100644 index f9ad609..0000000 Binary files a/infra_cli/__pycache__/ssh.cpython-313.pyc and /dev/null differ diff --git a/tests/__pycache__/test_cli.cpython-313-pytest-9.0.2.pyc b/tests/__pycache__/test_cli.cpython-313-pytest-9.0.2.pyc deleted file mode 100644 index 98a72fe..0000000 Binary files a/tests/__pycache__/test_cli.cpython-313-pytest-9.0.2.pyc and /dev/null differ