git ssb

2+

cel / scuttlebot.io



Tree: 86cfe7c6ec39c87ba43e41c3ed13c7902bf07fd8

Files: 86cfe7c6ec39c87ba43e41c3ed13c7902bf07fd8 / tmpl / index.html.js

1718 bytesRaw
1var page = require('./page.part')
2var installTheDatabase = require('./docs/basics/install-the-database.html')
3
4// this page is the same as the first guide in basics, but with the big hero
5module.exports = () => page({
6 section: 'docs',
7 tab: 'docs-basics',
8 path: '/docs/basics/install-the-database.html',
9 hero: `
10 <div class="hero big">
11 <img src="/img/hermies-256.png">
12 <h1>Scuttlebot<br><small>a social p2p database<br>for cloud-free apps</small></h1>
13 <p>
14 <a class="cta" href="javascript:alert('TODO: This will popup to a youtube video demoing sbot install and usage, and then patchwork')">&#9654; See it in action</a>
15 <a class="cta dark" href="/docs/basics/install-the-database.html"><small>&#11015;</small> Download now</a>
16 </p>
17 <p class="description">
18 Scuttlebot is an open source <strong>peer-to-peer log store</strong> used as a database, identity provider, and messaging system.
19 It features global replication, file-syncronization, and end-to-end encryption.<br>
20 <br>
21 Scuttlebot behaves like the <a href="https://stackoverflow.com/questions/4647719/what-does-headless-mean?rq=1">headless backend</a> to a social network.
22 Localhosted frontend applications read and write freely to the local instance, and, in the background, the database syncs with known peers.<br>
23 <br>
24 Users are identified by public keys, and follow each other to form a web-of-trust.
25 Peers do not have to be trusted, and can share logs and files on behalf of other peers.
26 <a href="/protocols/secure-scuttlebutt.html">Read about the protocol.</a>
27 </p>
28 </div>
29 `,
30 content: installTheDatabase.content()
31})

Built with git-ssb-web