From db3085a0c2708e5d6c71dad3bb0d86d42816f8cb Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Tue, 18 Aug 2015 10:31:15 -0700 Subject: [PATCH] format README --- README.md | 3 +-- pkg/types/system.go | 8 ++++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 pkg/types/system.go diff --git a/README.md b/README.md index 450ce224..c6cfcbb8 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 00000000..db2ded2f --- /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/*) +}