-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (67 loc) · 2.68 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Gradle SSH Plugin — Deploy your App from Gradle</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootswatch/3.3.4/cosmo/bootstrap.min.css"/>
<link rel="stylesheet" href="/public/site.css">
<link rel="shortcut icon" href="/public/favicon.ico">
</head>
<body>
<div class="jumbotron">
<div class="container text-center">
<div><img src="/public/gradle-ssh-plugin.png" alt="Logo"></div>
<h1>Deploy your App from Gradle</h1>
<p>A Gradle plugin which provides SSH facilities for continuous delivery.</p>
<br/>
<a href="/docs/" class="btn btn-lg btn-default">Read the Document</a>
</div>
</div>
<div class="container text-center">
<h2>Gradle SSH Plugin</h2>
<div class="row">
<div class="col-md-3 col-lg-3 col-md-offset-3 col-lg-offset-3">
<div class="panel panel-default">
<div class="panel-body">
<h3>Intuitive DSL</h3>
<p>Desinated DSL for SSH operations, integrated with Gradle.</p>
<p>Remote command execution and file transfer.</p>
<p>Interaction with standard I/O of remote command or shell.</p>
</div>
</div>
</div>
<div class="col-md-3 col-lg-3">
<div class="panel panel-default">
<div class="panel-body">
<h3>Accommodation</h3>
<p>User authentication with password, publickey or agent.</p>
<p>Host verification with OpenSSH style <code>known_hosts</code>.</p>
<p>Connection via gateway hosts or SOCKS/HTTPS proxy.</p>
</div>
</div>
</div>
</div>
<h2>Getting Started</h2>
<p>Just add a depenency of the plugin.</p>
<div class="row">
<div class="col-md-6 col-lg-6 col-md-offset-3 col-lg-offset-3 text-left" id="example-script"></div>
</div>
<p>Next steps...</p>
<p>
<a href="/docs/" class="btn btn-default">Read the Document</a>
<a href="https://github.com/gradle-ssh-plugin/template" class="btn btn-primary">Get the Template Project</a>
<a href="https://github.com/int128/gradle-ssh-plugin" class="btn btn-info">GitHub</a>
</p>
</div>
<br/>
<div class="jumbotron">
<div class="container text-center">
Gradle SSH Plugin and Groovy SSH,
developed by Hidetake Iwata
</div>
</div>
<script src="//code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="/public/site.js"></script>
</body>
</html>