mirror of
https://github.com/pgsty/minio.git
synced 2026-07-19 12:10:24 +03:00
Moving to godep for dependency management
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
Dependencies
|
||||
============
|
||||
* go1.3.3
|
||||
* godep
|
||||
* go get github.com/tools/godep
|
||||
|
||||
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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user