forked from aitor/convox.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
262 lines (236 loc) · 7.59 KB
/
index.html
File metadata and controls
262 lines (236 loc) · 7.59 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
---
layout: default
---
<header class="top">
<nav class="app-nav">
<div class="app-nav__logo-container">
<img src="/assets/images/static/navbar-logo.png" class="app-nav__logo">
<a href="/" class="app-nav__link">Convox</a>
</div>
<div class="links">
<a href="/blog" class="app-nav__link">Blog</a>
<a href="https://github.com/convox" class="app-nav__link">Code</a>
<a href="/docs/" class="app-nav__link">Docs</a>
<a href="mailto:support@convox.com" class="app-nav__link">Contact Us</a>
</div>
</nav>
</header>
<header class="welcome gradientbg--dark">
<section class="section-header--centered section-header--page">
<h1 class="section-header__title section-header__title--large section-header__title--white">
Build, deploy, and manage applications with ease.
</h1>
<p class="section-header__description section-header__description--large">
Stop worrying about servers and focus on your code.
</p>
<ul>
<li class="section-header__action">
<a class="button button--green" href="https://grid.convox.com/grid/signup">
Sign up for free
</a>
</li>
</ul>
<p>
</p>
</section>
</header>
<section class="content development">
<header class="section-header section-header--centered row">
<h1 class="section-header__title section-header__title--blue">
Simplify your development environment
</h1>
<p class="section-header__description col--8 shift--2">
Start a local development environment that is identical to production with a single command.
</p>
</header>
<section>
<div class="cli-example col--8">
<pre class="stdin">$ convox start</pre>
<pre class="stdout">
RUNNING: docker build -t zfrsyhlvdi ~/src/myapp
Sending build context to Docker daemon 2.29 MB
Step 0 : FROM rails:latest
---> 5063434fffa1
Step 1 : COPY Gemfile /app/Gemfile
---> Using cache
---> 54933d99be26
Step 2 : COPY Gemfile.lock /app/Gemfile.lock
---> Using cache
---> 3969abcce8da
Step 3 : RUN bundle install</pre>
</div>
<dl class="col--4">
<dt>Works out of the box</dt>
<dd>
Convox will introspect your application to automatically create an
appropriate runtime environment.
</dd>
<dt>Identical to production</dt>
<dd>
Runs exactly as it will in production so you can be certain
your changes work as expected.
</dd>
<dt>Built on Docker</dt>
<dd>
Start with a huge library of pre-built images and customize
to your individual needs.
</dd>
</dl>
</section>
</section>
<section class="production gradientbg--light">
<div class="content">
<header class="section-header section-header--centered row">
<h1 class="section-header__title section-header__title--blue">
Production-grade infrastructure
</h1>
<p class="section-header__description col--8 shift--2">
Zero-maintenance architecture built on industry best practices.
</p>
</header>
<section>
<dl class="col--4">
<dt>Runs in your own AWS account</dt>
<dd>
Use industry best practices without the work. Easily scale up
without breaking the bank.
</dd>
<dt>Instant deploys</dt>
<dd>
Confidently deploy new code in seconds without dropping a single request.
</dd>
<dt>Predictable performance</dt>
<dd>
Your instances, your code. Stop worrying about noisy neighbors.
</dd>
<dt>Flexible runtime</dt>
<dd>
Run any language or framework. Open TCP listeners on arbitrary ports.
</dd>
<dt>Powerful introspection</dt>
<dd>
Centralized access to your metrics and logs.
</dd>
<dt>Secure by default</dt>
<dd>
Run applications in a private network that you control.
</dd>
</dl>
<div class="cli-example col--8">
<pre class="stdin">$ convox apps</pre>
<pre class="stdout">
APP STATUS
myapp running</pre>
<pre class="stdin">$ convox apps info</pre>
<pre class="stdout">
Name myapp
Status running
Release REXIQURVKXE
Processes admin web
Hostname myapp-1749418666.us-east-1.elb.amazonaws.com
Ports web:80 web:443 admin:9322</pre>
<pre class="stdin">$ convox ps</pre>
<pre class="stdout">
ID NAME RELEASE CPU MEM STARTED COMMAND
13254981d20 admin REXIQURVKXE 0.47% 2.21% 17 hours ago bin/admin
92d4a822c13 web REXIQURVKXE 3.29% 20.68% 17 hours ago bin/web</pre>
<pre class="stdin">$ convox env</pre>
<pre class="stdout">PASSWORD=xyzzy</pre>
<pre class="stdin">$ convox logs</pre>
<pre class="stdout">
web: [01/Jan/2015:00:00:00] "GET / HTTP/1.1" 200 554 0.0027
web: [01/Jan/2015:00:00:00] "POST /users HTTP/1.1" 303 - 0.0049</pre>
</div>
</section>
</div>
</section>
<section class="production gradientbg--light">
<div class="content">
<header class="section-header section-header--centered row">
<h1 class="section-header__title section-header__title--blue">
Automate your development workflow
</h1>
<p>One-click integration with the tools you're already using.</p>
</header>
<section>
<div class="col--8">
<img src="/assets/images/static/slack.png" class="screenshot">
</div>
<dl class="col--4">
<dt>Continuous delivery</dt>
<dd>Trigger automated builds and deployments when you push your code.
<dt>Real-time notifications</dt>
<dd>Get notified of system and app events in your team's chat room.
</dl>
</section>
</div>
</section>
<section class="content sub-section api">
<div class="">
<header class="section-header section-header--centered">
<h1 class="section-header__title section-header__title--blue">
Open API
</h1>
<p>Customize your environment to suit your needs.</p>
<p class="api-button"><a class="button" href="/api">Browse the API</a></p>
</header>
<section class="cli-examples">
<div class="cli-example col--6">
<pre class="stdin">$ convox api get /apps</pre>
<pre class="stdout">
[
{
"balancer": "myapp-1749418666.us-east-1.elb.amazonaws.com",
"name": "myapp",
"release": "REXIQURVKXE",
"status": "running"
},
{
"balancer": "myapp2-689551992.us-east-1.elb.amazonaws.com",
"name": "myapp2",
"release": "RNEFHNIUSKF",
"status": "running"
},
{
"balancer": "myapp3-435098803.us-east-1.elb.amazonaws.com",
"name": "myapp3",
"release": "RORJKBNVKDD",
"status": "running"
}
]</pre>
</div>
<div class="cli-example col--6">
<pre class="stdin">$ convox api get /apps/myapp/processes</pre>
<pre class="stdout">
[
{
"app": "myapp",
"command": "bin/web",
"cpu": 0.0329,
"host": "10.0.3.135",
"id": "13254981d20",
"image": "registry.internal:5000/myapp-web:BHLRYHSMXNM",
"memory": 0.2068,
"name": "web",
"ports": [
"80:3000",
"443:3001"
],
"release": "REXIQURVKXE",
"started": "2015-01-01T00:00:00Z"
}
]</pre>
</div>
</section>
</div>
</section>
<section class="bg--light section--clear">
<div class="content content--centered content--small">
Have a question? Join us in our public slack channel!
<div class="inline-container">
<a class="button slack-button" href="//invite.convox.com/">
<img src="/assets/images/static/slack-logo.png" class="slack-button__logo" alt="Slack Logo">
</a>
</div>
</div>
</section>