Audio feed generator and CMS
Find a file
2017-11-17 14:19:22 -08:00
admin Admin: Added user editing 2017-11-17 13:59:53 -08:00
assets Admin: Added user editing 2017-11-17 13:59:53 -08:00
auth Fix env variable placement 2017-10-05 21:22:18 -07:00
common Working on Session Creation, Added Login.html 2017-10-04 23:58:53 +05:30
Godeps Update godeps 2017-11-17 14:19:22 -08:00
router Admin: Added user editing 2017-11-17 13:59:53 -08:00
.dockerignore Reorganizing file directory structure to match other Golang projects 2017-09-25 11:22:30 -07:00
.gitignore Format app.js templates 2017-10-27 18:39:29 -07:00
.travis.yml Fix Docker image not running correctly 2017-10-08 11:23:23 -07:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-10-01 17:39:39 -07:00
CONTRIBUTING.md Add contributing.md 2017-11-17 14:09:55 -08:00
Dockerfile Fix Docker image not running correctly 2017-10-08 11:23:23 -07:00
generate_rss.go Admin: Added user editing 2017-11-17 13:59:53 -08:00
LICENSE Initial commit 2017-06-13 22:55:41 -07:00
README.md Admin: Added user editing 2017-11-17 13:59:53 -08:00
webserver.go Removed configreader.go and renamed ishanjain28/pogo -> gmemstr/pogo 2017-10-05 12:27:55 -07:00

Pogo

Podcast RSS feed generator and CMS in Go.

Build Status gitgalaxy live branch follow

Goal

To produce a product that is easy to deploy and easier to use when hosting a podcast from ones own servers.

Features

  • Auto-generate rss feed
  • Basic frontend for listening to episodes
  • Flat-file directory structure
  • Human readable files
  • Self publishing interface w/ password protection
  • Custom CSS and themeing capabilities
  • JSON feed generation for easier parsing
  • Docker support

Requirements

github.com/gorilla/feeds

github.com/fsnotify/fsnotify

github.com/gorilla/mux

Building

godep restore
go build
# Set environment variable
export POGO_SECRET=secret
# Windows
# set POGO_SECRET=secret
./podcast

File format

Pogo uses a flat file structure for managing podcast episodes. As such, files have a special naming convention.

For podcast audio files, filenames take the form of YEAR-MONTH-DAY followed by the title. The two values are separated by underscores (YYYY-MM-DD_TITLE.mp3).

"Shownote" files are markdown formatted and simply append _SHOWNOTES.md to the existing filename (sans .mp3 of course).