Comment fixes

This commit is contained in:
gmemstr 2017-09-11 12:12:24 -07:00
parent 102b4211b0
commit 69a121aefa
4 changed files with 14 additions and 8 deletions

View file

@ -2,10 +2,10 @@
"AdminUsername": "",
"AdminPassword": "",
"MediaDirectory": "podcasts/",
"Name": "Git Galaxy Stargazers",
"Name": "Git Galaxy Podcast",
"Host": "Gabriel Simmer",
"Email": "gabriel@gitgalaxy.com",
"Description": "open source discussion",
"Description": "Discussion about open source projects on the internet.",
"Image": "localhost:8000/assets/podcast_image.png",
"PodcastUrl": "http://localhost:8000"
}

View file

@ -13,8 +13,9 @@ import (
"io/ioutil"
"io"
"os" // ioOS?
)
"github.com/spf13/viper"
)
// Write custom CSS to disk or send it back to the client if GET
func CustomCss(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {

View file

@ -21,6 +21,12 @@ import (
// Watch folder for changes, called from webserver.go
func watch() {
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))
}
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.Fatal(err)

View file

@ -74,7 +74,6 @@ func BasicAuth(handler http.HandlerFunc,) http.HandlerFunc {
w.Write([]byte("Unauthorised.\n"))
return
}
handler(w, r)
}
}