This commit is contained in:
gmemstr 2017-09-25 09:04:29 -07:00
parent 33a2755948
commit 577535c897
5 changed files with 17 additions and 21 deletions

View file

@ -11,6 +11,7 @@ body {
label { label {
display: block; display: block;
} }
input,textarea { input,textarea {
margin-bottom: 10px; margin-bottom: 10px;
padding: 10px; padding: 10px;

View file

@ -1,8 +1,8 @@
package main package main
import ( import (
"io/ioutil"
"encoding/json" "encoding/json"
"io/ioutil"
) )
type Config struct { type Config struct {
@ -12,6 +12,8 @@ type Config struct {
Description string Description string
Image string Image string
PodcastUrl string PodcastUrl string
AdminUsername string
AdminPassword string
} }
func ReadConfig() Config { func ReadConfig() Config {

View file

@ -7,8 +7,8 @@ package feeds
import ( import (
"encoding/xml" "encoding/xml"
"fmt" "fmt"
"time"
"strconv" "strconv"
"time"
) )
// private wrapper around the RssFeed which gives us the <rss>..</rss> xml // private wrapper around the RssFeed which gives us the <rss>..</rss> xml
@ -122,7 +122,7 @@ func (r *Rss) RssFeed() *RssFeed {
} }
} }
image := &RssImage{Url: r.Image.Url, Title: r.Image.Title, Link: r.Image.Link, Width:r.Image.Width, Height: r.Image.Height} image := &RssImage{Url: r.Image.Url, Title: r.Image.Title, Link: r.Image.Link, Width: r.Image.Width, Height: r.Image.Height}
channel := &RssFeed{ channel := &RssFeed{
Title: r.Title, Title: r.Title,

View file

@ -92,13 +92,6 @@ func AdminHandler(w http.ResponseWriter, r *http.Request) {
// Main function that defines routes // Main function that defines routes
func main() { func main() {
viper.SetConfigName("config")
viper.AddConfigPath(".")
err := viper.ReadInConfig() // Find and read the config file
if err != nil { // Handle errors reading the config file
panic(fmt.Errorf("Fatal error config file: %s \n", err))
}
// Start the watch() function in generate_rss.go, which // Start the watch() function in generate_rss.go, which
// watches for file changes and regenerates the feed // watches for file changes and regenerates the feed
go watch() go watch()