2015-04-08 16:59:57 -07:00
|
|
|
Highly experimental branch that implements the following features:
|
2014-07-13 19:53:59 -07:00
|
|
|
|
2015-04-08 16:59:57 -07:00
|
|
|
* Pluggable database backends
|
|
|
|
* Pluggable queue
|
|
|
|
* Matrix builds
|
|
|
|
* Build plugins
|
|
|
|
* New Yaml syntax
|
|
|
|
* and more ...
|
2014-11-10 00:24:47 -08:00
|
|
|
|
2015-04-08 16:59:57 -07:00
|
|
|
Running Drone:
|
2014-11-10 00:24:47 -08:00
|
|
|
|
2014-08-02 11:21:39 -07:00
|
|
|
```
|
2015-04-08 16:59:57 -07:00
|
|
|
./drone --config="/path/to/config.toml"
|
2014-09-03 00:23:36 -07:00
|
|
|
```
|
2014-08-02 11:21:39 -07:00
|
|
|
|
2015-04-08 16:59:57 -07:00
|
|
|
Configuring Drone:
|
2015-02-19 19:20:14 +01:00
|
|
|
|
2014-09-03 00:23:36 -07:00
|
|
|
```toml
|
2014-10-11 14:30:51 -07:00
|
|
|
[server]
|
2015-04-16 15:15:05 -07:00
|
|
|
addr = ":80"
|
|
|
|
cert = ""
|
|
|
|
key = ""
|
2014-10-11 14:30:51 -07:00
|
|
|
|
2014-10-11 20:33:06 -07:00
|
|
|
[session]
|
2015-04-16 15:15:05 -07:00
|
|
|
secret = ""
|
|
|
|
expires = ""
|
2014-10-11 20:33:06 -07:00
|
|
|
|
2014-10-01 12:01:02 -07:00
|
|
|
[database]
|
2015-04-16 15:15:05 -07:00
|
|
|
path = "/etc/drone/drone.db"
|
2014-09-07 14:55:37 -07:00
|
|
|
|
2014-12-10 17:57:39 +03:00
|
|
|
[docker]
|
2015-04-16 15:15:05 -07:00
|
|
|
cert = ""
|
|
|
|
key = ""
|
|
|
|
nodes = [
|
2015-04-08 16:59:57 -07:00
|
|
|
"unix:///var/run/docker.sock",
|
|
|
|
"unix:///var/run/docker.sock"
|
2014-09-07 14:55:37 -07:00
|
|
|
]
|
|
|
|
|
2015-04-08 16:59:57 -07:00
|
|
|
[service]
|
|
|
|
name = "github"
|
|
|
|
base = "https://github.com"
|
|
|
|
orgs = []
|
|
|
|
open = false
|
|
|
|
private_mode = false
|
|
|
|
skip_verify = true
|
|
|
|
|
|
|
|
[service.oauth]
|
|
|
|
client = ""
|
|
|
|
secret = ""
|
|
|
|
authorize = "https://github.com/login/oauth/authorize"
|
|
|
|
access_token = "https://github.com/login/oauth/access_token"
|
|
|
|
request_token = ""
|
2014-09-03 00:23:36 -07:00
|
|
|
```
|