| 1 | # cellar |
| 2 | |
| 3 | Wine tasting log with optional Anthropic vision (label analysis) and per-wine |
| 4 | RSS feed. |
| 5 | |
| 6 | ## Install |
| 7 | |
| 8 | **Homebrew:** |
| 9 | |
| 10 | ```bash |
| 11 | brew install stevedylandev/tap/cellar |
| 12 | ``` |
| 13 | |
| 14 | **Curl install (Linux/macOS):** |
| 15 | |
| 16 | ```bash |
| 17 | curl -fsSL https://raw.githubusercontent.com/stevedylandev/andromeda/main/install.sh | sh -s -- cellar |
| 18 | ``` |
| 19 | |
| 20 | **PowerShell (Windows):** |
| 21 | |
| 22 | ```powershell |
| 23 | & ([scriptblock]::Create((irm https://raw.githubusercontent.com/stevedylandev/andromeda/main/install.ps1))) cellar |
| 24 | ``` |
| 25 | |
| 26 | **Prebuilt binary:** Grab the right archive from the [releases page](https://github.com/stevedylandev/andromeda/releases?q=cellar%2F) and drop the binary somewhere on your `$PATH`. |
| 27 | |
| 28 | **From source:** |
| 29 | |
| 30 | ```bash |
| 31 | git clone https://github.com/stevedylandev/andromeda |
| 32 | cd andromeda/apps/cellar |
| 33 | go build . |
| 34 | ``` |
| 35 | |
| 36 | ## Notes |
| 37 | |
| 38 | - Anthropic `/v1/messages` called via stdlib `net/http` (no SDK). |
| 39 | - Image processing uses stdlib `image` decode + JPEG re-encode at quality 75. |
| 40 | EXIF orientation is not respected; rotate before upload if needed. |
| 41 | - Multipart upload limit 10 MB. |
| 42 | |
| 43 | See `.env.example` for config. |