Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
idobry committed Oct 4, 2018
1 parent 400da57 commit 686ddfe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ $ helm package .
$ curl -L --data-binary "@<packge-name>" <chartmuseum-url>/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
Expand All @@ -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

Expand Down
6 changes: 3 additions & 3 deletions controllers/uploadChart.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

}
Binary file modified quickstart
Binary file not shown.

0 comments on commit 686ddfe

Please sign in to comment.