2014-11-23 00:25:07 -05:00
|
|
|
Introduction
|
|
|
|
============
|
|
|
|
Minio is an open source object storage released under Apache license v2.
|
|
|
|
|
|
|
|
It uses ``Rubberband Erasure`` coding to dynamically protect the data.
|
2014-11-24 02:08:43 -05:00
|
|
|
Minio was inspired by Amazon S3 API and Haystack Object Format.
|
2014-11-23 00:25:07 -05:00
|
|
|
|
2014-11-03 23:59:07 -05:00
|
|
|
Dependencies
|
|
|
|
============
|
|
|
|
* go1.3.3
|
|
|
|
* godep
|
|
|
|
* go get github.com/tools/godep
|
2014-11-22 21:11:40 -05:00
|
|
|
* yasm
|
|
|
|
* cover
|
|
|
|
* go get code.google.com/p/go.tools/cmd/cover or yum install golang-cover
|
2014-11-03 23:59:07 -05:00
|
|
|
|
|
|
|
Dependency management
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Install or updating a new dependency
|
|
|
|
------------------------------------
|
|
|
|
```sh
|
|
|
|
go get -u github.com/example/dependency
|
|
|
|
# import github.com/example/dependency in go src code
|
|
|
|
godep save ./...
|
|
|
|
```
|
|
|
|
|
|
|
|
Commit all Godep/ modifications, including vendorized files.
|
|
|
|
|
|
|
|
Restoring dev environment dependencies
|
|
|
|
--------------------------------------
|
|
|
|
```sh
|
|
|
|
godep restore
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Compiling
|
|
|
|
=========
|
|
|
|
```sh
|
|
|
|
make
|
|
|
|
```
|
2014-11-27 05:45:42 -05:00
|
|
|
|
2014-11-27 05:49:20 -05:00
|
|
|
[![Analytics](https://ga-beacon.appspot.com/UA-56860620-3/minio/readme)](https://github.com/igrigorik/ga-beacon)
|