-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from digitalocean/v1
Merging doit into doctl
- Loading branch information
Showing
3,300 changed files
with
2,019,201 additions
and
16,042 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
cmd/doit/doit | ||
.goxc.local.json | ||
.DS_Store | ||
bin* | ||
.deps | ||
builds | ||
doit | ||
.vscode | ||
project.json | ||
.cover | ||
dist | ||
public | ||
docs/content | ||
doctl | ||
releaselog* | ||
.idea* | ||
doctl.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
--- | ||
language: go | ||
|
||
go: | ||
- 1.4.2 | ||
- tip | ||
|
||
install: | ||
- export PATH=$PATH:$HOME/gopath/bin | ||
|
||
script: | ||
- make test | ||
- 1.6 | ||
sudo: false | ||
install: true | ||
script: scripts/ci.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Contributing to doctl | ||
|
||
**First:** if you're unsure or afraid of _anything_, just ask | ||
or submit the issue or pull request anyways. You won't be yelled at for | ||
giving your best effort. The worst that can happen is that you'll be | ||
politely asked to change something. We appreciate any sort of contributions, | ||
and don't want a wall of rules to get in the way of that. | ||
|
||
However, for those people who want a bit more guidance on the | ||
best way to contribute to the project, read on. This document will cover | ||
what we're looking for. By addressing all the points we're looking for, | ||
it raises the chances we can quickly merge or address your contributions. | ||
|
||
## Issues | ||
|
||
### Reporting an Issue | ||
|
||
* Make sure you test against the latest released version. It is possible | ||
we already fixed the bug you're experiencing. | ||
|
||
* If you experienced a panic, please create a [gist](https://gist.github.com) | ||
of the *entire* generated crash log for us to look at. Double check | ||
no sensitive items were in the log. | ||
|
||
* Respond as promptly as possible to any questions made by the _doctl_ | ||
team to your issue. Stale issues will be closed. | ||
|
||
### Issue Lifecycle | ||
|
||
1. The issue is reported. | ||
|
||
2. The issue is verified and categorized by a _doctl_ collaborator. | ||
Categorization is done via tags. For example, bugs are marked as "bugs". | ||
|
||
3. Unless it is critical, the issue is left for a period of time (sometimes | ||
many weeks), giving outside contributors a chance to address the issue. | ||
|
||
4. The issue is addressed in a pull request or commit. The issue will be | ||
referenced in the commit message so that the code that fixes it is clearly | ||
linked. | ||
|
||
5. The issue is closed. Sometimes, valid issues will be closed to keep | ||
the issue tracker clean. The issue is still indexed and available for | ||
future viewers, or can be re-opened if necessary. | ||
|
||
## Setting up Go to work on doctl | ||
|
||
If you have never worked with Go before, you will have to complete the | ||
following steps in order to be able to compile and test doctl. | ||
|
||
1. Install Go. Make sure the Go version is at least Go 1.6. | ||
On Mac OS X, you can `brew install go` to install Go 1.6. | ||
|
||
1. Set and export the `GOPATH` environment variable and update your `PATH`. | ||
For example, you can add to your `.bash_profile`. | ||
|
||
``` | ||
export GOPATH=$HOME/Documents/golang | ||
export PATH=$PATH:$GOPATH/bin | ||
``` | ||
1. Make your changes to the doctl source, being sure to run the basic | ||
tests. | ||
1. If everything works well and the tests pass, run `go fmt` on your code | ||
before submitting a pull request. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.