-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstallation.html
More file actions
74 lines (71 loc) · 3.74 KB
/
installation.html
File metadata and controls
74 lines (71 loc) · 3.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Open source comments and kudos server for static websites">
<title>Kucos - Open source Comments and Kudos server</title>
<link rel="shortcut icon" href="/assets/img/favicon.ico">
<link rel="stylesheet" href="/assets/css/pure/pure-min.css">
<link rel="stylesheet" href="/assets/css/pure/grids-responsive-min.css">
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
<div id="layout" class="pure-g">
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<a href="/"><img src="/kucos.png" /></a>
<h1 class="brand-title">Kucos</h1>
<h2 class="brand-tagline">Open source comments and kudos server for static websites</h2>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a class="pure-button" href="/installation.html">Installation</a>
<a class="pure-button" href="https://github.com/kucosjs/kucos">GitHub</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<div class="posts">
<section class="post">
<header class="post-header">
<h2 class="post-title">Installation</h2>
</header>
<div class="post-description">
<p>
<p>To install Kucos you need NodeJS and MongoDB database, you can use free hosting on Mongo Atlas or install your own MongoDB server.</p>
<p>Installation of Kucos is very simple, you need to download the source code then rename the <em></em>config.example.js</em> file to <em>config.js</em> and fill it in correctly.</p>
<ul>
<li><code>$ git clone https://github.com/kucosjs/kucos</code></li>
<li><code>$ mv config.example.js config.js</code></li>
<li><code>$ vim config.js</code></li>
</ul>
<p>Now all you have to do is <em>npm install</em>, run the command <em>gulp</em> and <em>node index.js</em> to start the server.</p>
<ul>
<li><code>$ npm install</code></li>
<li><code>$ gulp</code></li>
<li><code>$ node index.js</code></li>
</ul>
</p>
</div>
</section>
</div>
<div id="comments"></div>
<div class="footer">
<div class="pure-menu pure-menu-horizontal">
<ul>
<li class="pure-menu-item"><a href="https://kucosjs.github.io" class="pure-menu-link">About</a></li>
<li class="pure-menu-item"><a href="https://twitter.com/skorotkiewicz" class="pure-menu-link">Twitter</a></li>
<li class="pure-menu-item"><a href="https://github.com/kucosjs/kucos" class="pure-menu-link">GitHub</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<script src="https://kucos.vercel.app/min/kucos.min.js"></script>
</body>
</html>