-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (75 loc) · 3.84 KB
/
index.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
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>buppy file storage</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/jumbotron-narrow.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation"><a href="/">Home</a></li>
<li role="presentation"><a href="/man/1/bpy.html">Docs</a></li>
<li role="presentation"><a href="https://github.com/buppyio/bpy/releases">Download</a></li>
</ul>
</nav>
<h1>buppy file storage</h1>
</div>
<div>
<h2>What does it do?</h2>
<h3>Encrypted and signed file storage</h4>
<p>The command line client encrypts, deduplicates and signs files/folders before sending them to a remote server via ssh.
You can then retrieve your data via the command line, or a browser interface.</p>
<h3>It is easy to setup and requires only ssh</h4>
<p>Copy the 'bpy' binary to your client machine and to a server with ssh enabled, and you are ready to go.</p>
<h3>Has an open source implementation</h4>
<p>The command line tool 'bpy' is standalone, free and open source. Don't trust the client to keep your data safe? <a href="https://github.com/buppyio/bpy">Browse the code!</a></p>
</div>
<div>
<h2>Demo</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/xb8G8qA9ibI" frameborder="0" allowfullscreen></iframe>
</div>
<div>
<h2>Download and Setup - (PreAlpha)</h2>
<hr>
<p>Buppy is easy to install. Download a single binary with <em>zero run-time dependencies</em> and run it from the command line.</p>
<h4>Step 1: Download bpy for your platform and put the bpy executeable in your path</h4>
<p>On Windows you can run the msi installer, on Linux, BSD or OSX you can extract the zip or tarball and add the 'bpy' binary to your $PATH environment variable</p>
<h4>Step 2: Create a key file</h4>
<p>Keep a copy of this file in a safe location such as a flash drive, or google account. If you lose it your data is lost <b>FOREVER</b>.
When accessing your data you need both the key file, and the encrypted data files</p>
<code>$ bpy new-key -f ~/.bpy/bpy.key</code>
<br>
<h4>Step 3: Set the BPY_REMOTE_CMD environment variable</h4>
<p>This environment variable should be a command to run a 'bpy remote' process remotely.
Typically this command will be an ssh command such as:</p>
<code>$ export BPY_REMOTE_CMD="ssh $SERVER bpy remote /home/$USER/bpy_drive/"</code>
<br>
<h4>Step 4: Run it!</h4>
<code>$ bpy browse</code>
</div>
<div>
<h2>What's next?</h4>
<hr>
<p>Explore the commands and read the <a href="/man/1/bpy.html">docs</a></p>
</div>
<footer class="footer">
<p>© 2016 buppy.io</p>
</footer>
</div> <!-- /container -->
</html>