-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathzeit.html
86 lines (77 loc) · 4.61 KB
/
zeit.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
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ZEIT - The Whole Code Catalog</title>
<link href="https://fonts.googleapis.com/css?family=Crimson+Text|Noto+Serif+JP&display=swap" rel="stylesheet">
<link href="shared.css" rel="stylesheet" type="text/css" />
<link href="article.css" rel="stylesheet" type="text/css" />
</head>
<body>
<article>
<div id="title" style=" cursor: pointer;" onclick="window.location.href='./'">
<div id="the">The</div>
<br>
<div id="wholecode">Whole Code</div>
<br>
<div id="catalog">Catalog</div>
</div>
<section>
<h1 id="zeit">ZEIT</h1>
<em>Reviewed September 6, 2019</em>
<p>ZEIT is a cloud-computing platform with a focus on usability. It allows developers to deploy any web application to their serverless (self-healing, auto-scaling) infrastructre with little or no configuration. It features free and automatic SSL, deep integrations with GitHub and GitLab, a new integrations marketplace, and even the ability to buy and manage domain names directly from their CLI. ZEIT was founded in 2015 by Guillermo Rauch.</p>
</section>
<section>
<h2 id="productfeel">Product Feel</h2>
<ul>
<li>👍Great onboarding, fast and simple</li>
<li>👍Outstanding attention to detail: small product, polished completely</li>
<li>👍Cool factor: lots of love on Twitter/HN; impressive blog / technical achievements.
<li>👍Momentum: constantly pushing big improvements</li>
</ul>
</section>
<section>
<h2 id="onboarding">Amazing onboarding</h2>
<p>You create your account via the command line! You don't even create a password; it's login via email every time. I am a sucker for these little touches, such how they autocomplete @gmail.com.</p>
<iframe class="loom" src="https://www.loom.com/embed/bfea983f0c1b495281391aa885402846" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</section>
<section>
<h2 id="cli">Everything from the CLI</h2>
<p>Every ZEIT deployment creates a free, permanent (immutable) URL under ZEIT's subdomain. But you can also alias to domains you own or even buy a domain from ZEIT right from the CLI! (You can also add your credit card via the command line!)</p>
<img src="https://user-images.githubusercontent.com/2288939/64458608-ca22f700-d0c3-11e9-8e97-bfbe67fc47ab.gif">
</section>
<section>
<h2 id="monorepo">Monorepo Support</h2>
<p>ZEIT combines the simplicity of a monorepo with the flexibility of independent services. You can mix various programming languages and static files all in the same repo as shown below. Without configuration, ZEIT automatically detects how to handle each file and builds them in parallel.</p>
<img src="https://user-images.githubusercontent.com/2288939/64452023-76101680-d0b3-11e9-82d2-19dd6b8ea8f3.png">
</section>
<section>
<h2 id="share">Share code</h2>
<p>ZEIT makes it incredibly easy to share both a running version of your app and its code -- even without setting up a online git repo. Simply adding <code>/_src</code> after a URL will pull up its source. You can share a specific line range of code by highlighting it and sharing the resultant URL as done in the following video:</p>
<iframe class="video" src="https://www.youtube.com/embed/CTrKkKBug2w?controls=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</section>
<section>
<h2 id="pricing">Pricing</h2>
<p>ZEIT offers a generous free tier and reasonably-priced paid service:</p>
<img src="https://user-images.githubusercontent.com/2288939/64457363-69de8600-d0c0-11e9-91d7-f81e7839f502.png">
</section>
<section>
<h2 id="wishes">Wishes</h2>
<p>All of my past wishes were granted:</p>
<ul>
<li>Auto-aliasing from merged Github pull requests</li>
<li>Add-ons, like Heroku: databases, logs, etc</li>
</ul>
</section>
</article>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103157758-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>