podcast-go

TUI podcast downloader for Apple Podcasts
Log | Files | Refs | README | LICENSE

commit 7f5b1a115eef9846132cccfb13bb85338fc00252
parent 0c3750a090fa9b109d5f3e6e038bb0ed1b14bb06
Author: Erik Loualiche <[email protected]>
Date:   Sun, 11 Jan 2026 09:18:56 -0600

Add clone and install instructions to README

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <[email protected]>

Diffstat:
MREADME.md | 29++++++++++++++++++++---------
1 file changed, 20 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md @@ -19,28 +19,39 @@ A TUI (Terminal User Interface) application for downloading podcast episodes fro ## Installation -### Using just (recommended) +### Clone from GitHub ```bash -# Build the binary -just build +git clone https://github.com/eloualiche/podcast-go.git +cd podcast-go +``` + +### Build -# Or build and run immediately -just run +Using just (recommended): + +```bash +just build ``` -### Using go directly +Or using go directly: ```bash go build -o podcastdownload main.go ``` -### Install dependencies +### Install globally (optional) + +To use `podcastdownload` from anywhere: + +```bash +go install +``` -If building from scratch, install Go dependencies: +Or move the binary to your PATH: ```bash -go mod download +sudo mv podcastdownload /usr/local/bin/ ``` ## Usage