diff --git a/README.md b/README.md index 161b655..825ade1 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ $ helm package . $ curl -L --data-binary "@" /api/charts ``` -In the browser, navigate to localhost/home to view your charts +In the browser, navigate to localhost and view your charts ## Built With @@ -88,7 +88,11 @@ In the browser, navigate to localhost/home to view your charts * Add login screen * Add more chartmuseum capabilitis: - Upload a chart + - Support multiple - Delete a chart + - Ask before deleting + - Delete all versions button + - Back to 'home' after delete all ## Contributing diff --git a/controllers/uploadChart.go b/controllers/uploadChart.go index d62e992..136a438 100644 --- a/controllers/uploadChart.go +++ b/controllers/uploadChart.go @@ -23,13 +23,13 @@ func (this *UploadChartController) Post() { if file != nil { l.Println("fileName:" + filePath) - err := this.SaveToFile("file", filePath) + err := this.SaveToFile("chart", filePath) if err != nil { - l.Println("SaveToFile", err.Error) + l.Println("*SaveToFile*", err.Error) } } - + l.Println("going into uploadChart()") uploadChart(filePath) } diff --git a/quickstart b/quickstart index 9ae59cf..2801a1b 100755 Binary files a/quickstart and b/quickstart differ