added public key to repo settings
This commit is contained in:
parent
c4279678e8
commit
fd5a017384
2 changed files with 15 additions and 10 deletions
18
README.md
18
README.md
|
@ -17,21 +17,21 @@ Configuring Drone:
|
|||
|
||||
```toml
|
||||
[server]
|
||||
addr=":80"
|
||||
cert=""
|
||||
key=""
|
||||
addr = ":80"
|
||||
cert = ""
|
||||
key = ""
|
||||
|
||||
[session]
|
||||
secret=""
|
||||
expires=""
|
||||
secret = ""
|
||||
expires = ""
|
||||
|
||||
[database]
|
||||
path=""
|
||||
path = "/etc/drone/drone.db"
|
||||
|
||||
[docker]
|
||||
cert=""
|
||||
key=""
|
||||
nodes=[
|
||||
cert = ""
|
||||
key = ""
|
||||
nodes = [
|
||||
"unix:///var/run/docker.sock",
|
||||
"unix:///var/run/docker.sock"
|
||||
]
|
||||
|
|
|
@ -37,6 +37,11 @@
|
|||
</li>
|
||||
</ul>
|
||||
|
||||
<div>
|
||||
<label>Public Key</label>
|
||||
<pre>{{ repo.keypair.public }}</pre>
|
||||
</div>
|
||||
|
||||
<button ng-click="save(repo)">Save</button>
|
||||
<button ng-click="delete(repo.full_name)">Delete</button>
|
||||
</form>
|
||||
</form>
|
||||
|
|
Loading…
Reference in a new issue