Skip to content

Configuration

Gabriel Simmer edited this page Jan 19, 2018 · 3 revisions

You can edit the configuration via the "Settings" tab as of Pogo 2.0, assuming you have the required permission level.

Manual Configuration

Pogo uses a json file for storing configuration values used throughout the app, and especially for the RSS feed. The RSS feed will automatically regenerate when the configuration file is changed. It is located in assets/config/config.json, where you will also find the SQLite3 file for login storage.

Configurable Parameters

Key Default Value What is?
Name Pogo Test Feed The name of your podcast
Host Gabriel Simmer Who hosts this podcast?
Email admin@localhost Host or podcast email
Description Discussion about open source projects on the internet. One-liner description of your podcast
Image localhost:8000/assets/logo-xs.png Logo for your RSS feed, which can be externally hosted
PodcastUrl localhost:8000 The URL of your podcast's website

Default config.json

{
	"Name": "Pogo Test Feed",
	"Host": "Gabriel Simmer",
	"Email": "admin@localhost",
	"Description": "Discussion about open source projects on the internet.",
	"Image": "localhost:8000/assets/logo-xs.png",
	"PodcastUrl": "http://localhost:8000"
}
Clone this wiki locally