dumb mistake excluded toml in deb
This commit is contained in:
parent
e4b7f86054
commit
081f0efa0b
2 changed files with 38 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -18,9 +18,10 @@ drone
|
|||
*.rice-box.go
|
||||
*.db
|
||||
*.txt
|
||||
*.toml
|
||||
*.min.js
|
||||
*_bindata.go
|
||||
*.toml
|
||||
!dist/drone/etc/drone/drone.toml
|
||||
|
||||
# generate binaries
|
||||
cmd/drone-agent/drone-agent
|
||||
|
|
36
dist/drone/etc/drone/drone.toml
vendored
Normal file
36
dist/drone/etc/drone/drone.toml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
[server]
|
||||
addr = ":80"
|
||||
cert = ""
|
||||
key = ""
|
||||
|
||||
# [session]
|
||||
# secret = ""
|
||||
# expires = ""
|
||||
|
||||
[database]
|
||||
path = "/var/lib/drone/drone.sqlite"
|
||||
|
||||
[docker]
|
||||
cert = ""
|
||||
key = ""
|
||||
addr = "unix:///var/run/docker.sock"
|
||||
swarm = ""
|
||||
|
||||
# [service]
|
||||
# kind = "github"
|
||||
# base = "https://github.com"
|
||||
# orgs = []
|
||||
# open = false
|
||||
# private = false
|
||||
# skip_verify = true
|
||||
|
||||
# [auth]
|
||||
# client = ""
|
||||
# secret = ""
|
||||
# authorize = "https://github.com/login/oauth/authorize"
|
||||
# access_token = "https://github.com/login/oauth/access_token"
|
||||
# request_token = ""
|
||||
|
||||
# [agents]
|
||||
# secret = ""
|
||||
|
Loading…
Reference in a new issue