format README

This commit is contained in:
Brad Rydzewski 2015-08-18 10:31:15 -07:00
parent eaf00e4cf5
commit db3085a0c2
2 changed files with 9 additions and 2 deletions

View file

@ -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

8
pkg/types/system.go Normal file
View file

@ -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/*)
}