diff --git a/README.md b/README.md index 450ce2242..c6cfcbb83 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,7 @@ bin/drone bin/drone --debug # debug mode loads static content from filesystem ``` -**NOTE** if you are seeing slow compile times you can try running `go install` -for the vendored `go-sqlite3` library: +If you are seeing slow compile times please install the following: ```sh go install github.com/drone/drone/Godeps/_workspace/src/github.com/mattn/go-sqlite3 diff --git a/pkg/types/system.go b/pkg/types/system.go new file mode 100644 index 000000000..db2ded2fa --- /dev/null +++ b/pkg/types/system.go @@ -0,0 +1,8 @@ +package types + +type System struct { + URL string // System URL + Env map[string]string // Global environment variables + Builder string // Name of build container (default drone/drone-build) + Plugins string // Name of approved plugin containers (default plugins/*) +}