dockerfile

This commit is contained in:
Tomas Dvorak
2026-04-21 11:51:08 +02:00
parent efcc157c67
commit 52ce16178b
3 changed files with 30 additions and 14 deletions
+4
View File
@@ -62,6 +62,10 @@ func NewRouter(cfg RouterConfig) http.Handler {
v1.POST("/providers/musicbrainz/enrich", handler.enrichMusicBrainz)
v1.GET("/providers/status", handler.providerStatus)
router.Static("/static", "./web/static")
router.StaticFile("/", "./web/index.html")
router.StaticFile("/app.js", "./web/app.js")
return router
}