Add journal frontend

This commit is contained in:
Martin Pander
2022-11-09 21:05:20 +01:00
parent 82f062b831
commit d9b92ab4e9
59 changed files with 3870 additions and 106 deletions

View File

@ -41,5 +41,6 @@ func main() {
router.Methods("GET", "POST", "DELETE", "OPTIONS")
log.Printf("Starting server.")
log.Fatal(http.ListenAndServe(":8080", cors(router)))
// TODO remove listening on all interfaces
log.Fatal(http.ListenAndServe("0.0.0.0:8080", cors(router)))
}