Audio feed generator and CMS
Find a file
2017-10-07 14:16:35 -07:00
admin Removed configreader.go and renamed ishanjain28/pogo -> gmemstr/pogo 2017-10-05 12:27:55 -07:00
assets Starting work on Vue.js-based admin interface 2017-10-06 12:49:11 -07: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 & add env variable for cookie secret 2017-10-05 21:16:03 -07:00
router Removed configreader.go and renamed ishanjain28/pogo -> gmemstr/pogo 2017-10-05 12:27:55 -07:00
vendor Removed configreader.go and renamed ishanjain28/pogo -> gmemstr/pogo 2017-10-05 12:27:55 -07:00
.dockerignore Reorganizing file directory structure to match other Golang projects 2017-09-25 11:22:30 -07:00
.gitignore ReAdding deps in vendor/ 2017-10-05 12:18:01 +05:30
.travis.yml Testing new dockerfile 2017-10-07 13:52:42 -07:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-10-01 17:39:39 -07:00
Dockerfile Add gopath back 2017-10-07 14:16:35 -07:00
generate_rss.go Removed configreader.go and renamed ishanjain28/pogo -> gmemstr/pogo 2017-10-05 12:27:55 -07:00
LICENSE Initial commit 2017-06-13 22:55:41 -07:00
README.md Update godeps & add env variable for cookie secret 2017-10-05 21:16:03 -07: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/gmemstr/feeds this branch contains some fixes for "podcast specific" tags

github.com/fsnotify/fsnotify

github.com/gorilla/mux

Building

godep restore
go build
# Set enviornment 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 seperated by underscores (YYYY-MM-DD_TITLE.mp3).

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