-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.html
118 lines (106 loc) · 4.57 KB
/
docs.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css//utilites.css">
<link rel="stylesheet" href="./css//style.css">
<title>Heroki | Cloud Hosting Platform</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container flex">
<h1 class="logo">Heroki</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="docs.html">Docs</a></li>
</ul>
</nav>
</div>
</div>
<!-- Docs Head -->
<section class="docs-head">
<div class="container grid">
<div>
<h1>Docs</h1>
<p>Learn how to work with the Loruki platform </p>
</div>
<img src="./images/docs.png" alt="Document img">
</div>
</section>
<!-- Docs main -->
<main class="docs-main">
<div class="container grid">
<div class="card">
<h3>Essentials</h3>
<nav>
<ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="./index.html">About Heroki</a></li>
<li><a href="#installation">Installation</a></li>
</ul>
</nav>
<h3>Deployment</h3>
<nav>
<ul>
<li><a href="#">Setting up a container</a></li>
<li><a href="#">Using the CLI</a></li>
<li><a href="#">Managing resources</a></li>
<li><a href="#">Upgrade & downgrade</a></li>
</ul>
</nav>
</div>
<div class="card">
<h2 id="introduction">Introduction</h2>
<p>Heroki is a cloud platform as a service supporting several programming languages.
One of the cloud platforms, Heroki has been in development since June 2021,
when it supported only the Ruby programming language,
but now supports Java, Node.js, Scala, Clojure, Python, PHP, and Go.</p>
<div class="alert alert-success">
<i class="fas fa-info"></i>
Run any recent version of Node.js etc. Deploy apps in seconds using dependency caching.
</div>
<h2 id="installation">Installation Guide</h2>
<p>Heroku makes it easy to install and scale your applications. </p>
<a href="#" class="btn btn-outline">Install CLI</a>
<h2>Requirements</h2>
<p>Windows 10, Mac OSX, Linux <br>
Node.js v12 or higher</p>
<h2>Install</h2>
<p>Mac (Homebrew)</p>
<pre><code>$ brew install loruki-cli</code></pre>
<p>NPM</p>
<pre><code>$ npm install loruki-cli</code></pre>
<p>Yarn</p>
<pre><code>$ yarn install loruki-cli</code></pre>
</div>
</div>
</main>
<!-- footer -->
<footer class="footer">
<div class="container grid">
<div>
<h1>Heroki</h1>
<p>Copyright © 2021</p>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="./features.html">Features</a></li>
<li><a href="./docs.html">Docs</a></li>
</ul>
</nav>
<div class="social">
<a href="https://github.com/abhisekill" target="_blank"><i class="fab fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/abhisekill" target="_blank"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="https://www.instagram.com/abhi_shek_05/" target="_blank"><i class="fab fa-instagram fa-2x"></i></a>
</div>
</div>
</footer>
</body>
</html>