Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.61 KB

installation.md

File metadata and controls

59 lines (37 loc) · 1.61 KB

Installation

With the Podops command-line interface (CLI), the po command, you can create podcasts and manage them from a terminal. This page describes various methods for installing the PoOps command-line interface on your system.

Downloads the binary

Download the latest binary for your system:

Unpack the archive and place the po binary in a directory that is on your PATH.

To check your PATH, execute the following command:

$ echo $PATH

Make the binary execuatable:

$ chmod +x po

The binary SHOULD already be executable, but hey !

After you install the CLI, it is available using the po command:

po help

Build from source

Requirements

Clone the repository

$ git clone https://github.com/podops/podops.git

If you don't have git, you can download the source code as a file archive from GitHub. Each release has a source snapshot.

Build

$ cd podops/cmd/cli
$ go build po.go

Build the services

Instructions on how to build the API service and the CDN service are currently only in README files on GitHub.