format README
This commit is contained in:
parent
eaf00e4cf5
commit
db3085a0c2
2 changed files with 9 additions and 2 deletions
|
@ -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
8
pkg/types/system.go
Normal 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/*)
|
||||
}
|
Loading…
Reference in a new issue