* added test for notfound
* 🚨🔨
* hahaha
* test
* Olympus: default to PORT env var (#226)
* Olympus: default to PORT env var
* Athens: generalize env.Port function call
* Olympus: add PORT to .env
* test
* getset
'
* Docs
* separate package
* Adding context to storage.Saver parameters
* +`buffalo.Context` as first param in storage.Saver
Fixes#177
* Parallelizing Upload to Azure Blob Storage
Fixes#175
* Fixing import clausing
* go fmt ./...
* Populating default context
* CI: Echo files modified by gofmt check to stderr
Doing so allows users to see which files still need to be formatted.
* Upgrading Go, then go fmt ./...
* Addressing Feedback
* more responding to feedback
* Adding worker save Default Context
* Removing tracing, buffalo.Context usage in Storage interface
github.com/bketelsen/buffet relies on using a `buffalo.Context`
however, often a `storage.Saver` is invoked from a buffalo worker,
which has no buffalo.Context associated with it. Therefore, we had
two options: create a buffalo context for each worker's Job, or
remove the buffalo.Context dependency in the Saver interface.
* Fixing missed changes
* Review feedback
* Add .info to upload payload
everywhere else as well
+ Upload payload includes Info
+ CLI uploads `version.info` as blob to storage
+ Getter and Saver methods updated for all storages implemented
+ Migration updated to include Info column
+ Tests no longer check RevInfo, now checking for Info same as Zip
+ Updated docs
* newline in .fizz
* change RevInfo.Info to []byte
+ change to []byte instead of io.Reader
+ adjust tests to check for info byte contents directly
+ add error check for minio client GetObject `pkg/storage/minio/getter.go`