auberge 0.10.4

CLI tool for managing self-hosted infrastructure with Ansible
# auberge

CLI for selfhost infrastructure management

## Synopsis

```bash
auberge [OPTIONS] <COMMAND>
```

## Description

Auberge is a comprehensive command-line tool for managing self-hosted infrastructure. It provides commands for managing VPS hosts, running Ansible playbooks, backing up and restoring application data, SSH key management, DNS management via Cloudflare, Headscale user and node management, and file synchronization.

## Global Options

| Option        | Description                                                                                                                                          |
| ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| -v, --verbose | Show dimmed subprocess output (cleared on success, kept on failure)                                                                                  |
| -q, --quiet   | Suppress chrome (info/success/warn) on stderr in `human` mode; errors and stdout data (tables, JSON) unaffected; mutually exclusive with `--verbose` |
| --no-color    | Disable colored output (also honored via `NO_COLOR` env var)                                                                                         |
| -h, --help    | Print help information                                                                                                                               |
| -V, --version | Print version information                                                                                                                            |

## Commands

| Command                            | Alias | Description                             |
| ---------------------------------- | ----- | --------------------------------------- |
| [deploy]deploy.md                | dp    | Deploy apps to a host                   |
| [select]select/host.md           | se    | Select hosts or playbooks interactively |
| [ansible]ansible/run.md          | a     | Run ansible playbooks                   |
| [backup]backup/create.md         | b     | Backup and restore application data     |
| [host]host/add.md                | h     | Manage VPS hosts                        |
| [ssh]ssh/keygen.md               | ss    | SSH key management                      |
| [sync]sync/music.md              | sy    | Sync files to remote hosts              |
| [dns]dns/list.md                 | d     | DNS management via Cloudflare           |
| [headscale]headscale/add-user.md | hs    | Manage Headscale users and nodes        |
| [config]config/overview.md       | c     | Manage user configuration               |

## Configuration

Auberge stores configuration in:

- **Hosts**: `~/.config/auberge/hosts.yml`
- **Backups**: `~/.local/share/auberge/backups/`
- **SSH keys**: `~/.ssh/identities/`

See [Configuration](../configuration/README.md) for details.

## Examples

```bash
# Add a new host
auberge host add myserver 192.168.1.10

# Run ansible playbook
auberge ansible run --host myserver

# Create backup
auberge backup create --host myserver

# List DNS records
auberge dns list
```

## See Also

- [Getting Started]../getting-started/README.md
- [Configuration]../configuration/README.md
- [Core Concepts]../core-concepts/README.md