Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/podgrab/src/commit/f799df5a6bb782b56a33f88ea5bbf24a787a1f99 You should set ROOT_URL correctly, otherwise the web may not work correctly.
A self-hosted podcast manager/downloader/archiver tool to download podcast episodes as soon as they become live with an integrated player.
 
 
 
Go to file
Akhil Gupta f799df5a6b menu in mobile view 4 years ago
.github/workflows update file permission 5 years ago
client menu in mobile view 4 years ago
controllers implement itunes search 4 years ago
db UI overhaul 4 years ago
images better screenshot cropping 5 years ago
model implement itunes search 4 years ago
service implement itunes search 4 years ago
webassets fix breaking images 4 years ago
.env dockerize 5 years ago
.gitignore first commit 5 years ago
Dockerfile updated docker file 5 years ago
LICENSE added readme and stuff 5 years ago
Readme.md added docker compose 5 years ago
docker-compose.yml added docker compose 5 years ago
go.mod ability to add,search and delete podcasts 5 years ago
go.sum ability to add,search and delete podcasts 5 years ago
main.go UI overhaul 4 years ago

Readme.md

Contributors Forks Stargazers Issues MIT License LinkedIn


Podgrab

A self-hosted tool to download latest podcast episodes as soon as they become live
Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents

About The Project

Product Name Screen Shot

Built With

Installation

The easiest way to run Podgrab is to run it as a container.

Using Docker

Simple setup without mounted volumes (for testing and evaluation)

  docker run -d -p 8080:8080 --name=podgrab akhilrex/podgrab

Binding local volumes to the container

   docker run -d -p 8080:8080 --name=podgrab -v "/host/path/to/assets:/assets" -v "/host/path/to/config:/config"  akhilrex/podgrab

Using Docker-Compose

Modify the docker compose file provided here to update the volume and port binding and run the following command

version: "2.1"
services:
  podgrab:
    image: akhilrex/podgrab
    container_name: podgrab
    environment:
      - CHECK_FREQUENCY=20
    volumes:
      - /path/to/config:/config
      - /path/to/data:/data
    ports:
      - 8080:8080
    restart: unless-stopped
   docker-compose up -d

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Akhil Gupta - @akhilrex

Project Link: https://github.com/akhilrex/podgrab