woodpecker/README.md

54 lines
760 B
Markdown
Raw Normal View History

2015-04-08 23:59:57 +00:00
Highly experimental branch that implements the following features:
2015-04-08 23:59:57 +00:00
* Pluggable database backends
* Pluggable queue
* Matrix builds
* Build plugins
* New Yaml syntax
* and more ...
2014-11-10 08:24:47 +00:00
2015-04-08 23:59:57 +00:00
Running Drone:
2014-11-10 08:24:47 +00:00
```
2015-04-08 23:59:57 +00:00
./drone --config="/path/to/config.toml"
```
2015-04-08 23:59:57 +00:00
Configuring Drone:
```toml
2014-10-11 21:30:51 +00:00
[server]
2015-04-08 23:59:57 +00:00
addr=":80"
2014-10-11 21:30:51 +00:00
cert=""
2015-04-08 23:59:57 +00:00
key=""
2014-10-11 21:30:51 +00:00
[session]
secret=""
2014-10-19 02:13:44 +00:00
expires=""
[database]
2015-04-08 23:59:57 +00:00
path=""
[docker]
2014-10-23 06:23:05 +00:00
cert=""
key=""
nodes=[
2015-04-08 23:59:57 +00:00
"unix:///var/run/docker.sock",
"unix:///var/run/docker.sock"
]
2015-04-08 23:59:57 +00: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 = ""
```