Go to file
Harshavardhana 61175ef091 Migrate to govendor to avoid limitations of godep
- over the course of a project history every maintainer needs to update
  its dependency packages, the problem essentially with godep is manipulating
  GOPATH - this manipulation leads to static objects created at different locations
  which end up conflicting with the overall functionality of golang.

  This also leads to broken builds. There is no easier way out of this other than
  asking developers to do 'godep restore' all the time. Which perhaps as a practice
  doesn't sound like a clean solution. On the other hand 'godep restore' has its own
  set of problems.

- govendor is a right tool but a stop gap tool until we wait for golangs official
  1.5 version which fixes this vendoring issue once and for all.

- govendor provides consistency in terms of how import paths should be handled unlike
  manipulation GOPATH.

  This has advantages
    - no more compiled objects being referenced in GOPATH and build time GOPATH
      manging which leads to conflicts.
    - proper import paths referencing the exact package a project is dependent on.

 govendor is simple and provides the minimal necessary tooling to achieve this.

 For now this is the right solution.
2015-08-12 19:24:57 -07:00
buildscripts Migrate to govendor to avoid limitations of godep 2015-08-12 19:24:57 -07:00
internal Migrate to govendor to avoid limitations of godep 2015-08-12 19:24:57 -07:00
pkg Migrate to govendor to avoid limitations of godep 2015-08-12 19:24:57 -07:00
.gitignore Adding initial logging framework to api_router 2015-04-28 20:37:08 -07:00
.mailmap Add krishna and nate into contributors list 2015-07-28 16:38:21 -07:00
.travis.yml Update slack secure builds 2015-07-23 14:41:19 -07:00
commands.go Migrate to govendor to avoid limitations of godep 2015-08-12 19:24:57 -07:00
console.go Move from Minimalist Object Storage to Minio Cloud Storage 2015-07-24 17:51:40 -07:00
CONTRIBUTING.md Migrate to govendor to avoid limitations of godep 2015-08-12 19:24:57 -07:00
CONTRIBUTORS.md Add krishna and nate into contributors list 2015-07-28 16:38:21 -07:00
contributors.sh Add contributors file 2015-05-23 11:49:07 -07:00
disks.go Probe revamped to provide for a new WrappedError struct to wrap probes as error interface 2015-08-08 00:16:38 -07:00
doc.go Rename more 2015-07-24 18:09:53 -07:00
Dockerfile Fix SSL support, pointer indirection caused nil buffers 2015-07-08 11:02:15 -07:00
genversion.go fix command template typo and fix others. 2015-08-01 10:51:02 -07:00
INSTALLGO.md Rename BUILDDEPS.md to INSTALLGO.md 2015-05-27 17:56:54 -07:00
LICENSE Initial commit 2014-10-30 21:51:52 -07:00
main.go Migrate to govendor to avoid limitations of godep 2015-08-12 19:24:57 -07:00
Makefile Migrate to govendor to avoid limitations of godep 2015-08-12 19:24:57 -07:00
NOTICE Move from Minimalist Object Storage to Minio Cloud Storage 2015-07-24 17:51:40 -07:00
README.md Rename more 2015-07-24 18:09:53 -07:00
version.go Migrating minio server build to do 'go run make.go' style like mc 2015-06-16 20:23:02 -07:00

Minio Server Gitter

Minio is a minimal cloud storage server written in Golang and licensed under Apache license v2. Minio is compatible with Amazon S3 APIs. Build Status

Minio Client

Minio Client (mc) provides a modern alternative to Unix commands like ls, cat, cp, sync, and diff. It supports POSIX compatible filesystems and Amazon S3 compatible cloud storage systems. It is entirely written in Golang.

Amazon S3 Compatible Client Libraries

Server Roadmap

Storage Backend:
- Donut: Erasure coded backend.
 - Status: Standalone mode complete.
Storage Operations:
- Collective:
  - Status: Work in progress.

Storage Management:
- WebCLI:
  - Status: Work in progress.
- Authentication:
  - Status: Work in progress.
- Admin Console:
  - Status: Work in progress.
- User Console:
  - Status: Work in progress.
- Logging:
  - Status: Work in progress.

Install

GNU/Linux

Download minio from https://dl.minio.io:9000/updates/2015/Jun/linux-amd64/minio

$ wget https://dl.minio.io:9000/updates/2015/Jun/linux-amd64/minio
$ chmod +x minio
$ ./minio mode memory limit 12GB expire 2h

OS X

Download minio from https://dl.minio.io:9000/updates/2015/Jun/darwin-amd64/minio

$ wget https://dl.minio.io:9000/updates/2015/Jun/darwin-amd64/minio
$ chmod +x minio
$ ./minio mode memory limit 12GB expire 2h

How to use Minio?

asciicast

Contribute