-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
144 lines (129 loc) · 6.06 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BundleWrap · Config management with Python</title>
<meta name="description" content="A decentralized configuration management system that is designed to be powerful, easy to extend and extremely versatile.">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bundlewrap.css" media="screen">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Maven+Pro" media="screen">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600" media="screen">
<script src="https://use.edgefonts.net/source-code-pro:n4,n7:all.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col-md-12">
<img class="main_icon float-left" src="img/icon.png" alt="BundleWrap logo">
<div class="main_title float-left">BundleWrap</div>
<nav class="float-right">
<ul>
<li><a href="https://github.com/bundlewrap/bundlewrap"><i class="fab fa-github"></i> GitHub</a></li>
<li><a href="https://docs.bundlewrap.org"><i class="fa fa-book"></i> Docs</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="blue_section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Config management with Python</h1>
<h2>Easy. Concise. Decentralized.</h2>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col">
<div class="terminal">$ bw repo create
$ bw repo bundle create motd
$ vim bundles/motd/items.py
files = {
'/etc/motd': {
'content': 'Hear me roar',
},
}
$ vim nodes.py
nodes = {
'localhost': {
'bundles': ['motd'],
},
}
</div>
</div>
<div class="col">
<div class="terminal">$ bw apply -i localhost
<span class="blue">i</span> <b>localhost</b> <b>started</b> at 2017-09-27 22:13:00
<span class="blue">?</span> <b>localhost</b>
<span class="blue">?</span> <b>localhost</b> ╭─ file:/etc/motd
<span class="blue">?</span> <b>localhost</b> │
<span class="blue">?</span> <b>localhost</b> │ <b>content</b>
<span class="blue">?</span> <b>localhost</b> │ <span class="red">--- <node></span>
<span class="blue">?</span> <b>localhost</b> │ <span class="green">+++ <bundlewrap></span>
<span class="blue">?</span> <b>localhost</b> │ @@ -1 +1 @@
<span class="blue">?</span> <b>localhost</b> │ <span class="red">-A lion still has claws</span>
<span class="blue">?</span> <b>localhost</b> │ <span class="green">+Hear me roar</span> (no newline at end of file)
<span class="blue">?</span> <b>localhost</b> │
<span class="blue">?</span> <b>localhost</b> ╰─ Fix <b>file:/etc/motd</b>? [Y/n]
<span class="blue">?</span> <b>localhost</b>
<span class="green">✓</span> <b>localhost</b> <b>motd</b> file:/etc/motd <span class="green">fixed</span> (content)
<span class="blue">i</span> <b>localhost</b> <b>completed</b> after 3s (0 OK, <span class="green">1 fixed</span>, 0 skipped, 0 failed)
<span class="blue">i</span> ╭───────────┬───────┬────┬───────┬─────────┬────────┬──────╮
<span class="blue">i</span> │ <b>node</b> │ items │ OK │ <span class="green">fixed</span> │ <span class="yellow">skipped</span> │ <span class="red">failed</span> │ time │
<span class="blue">i</span> ├───────────┼───────┼────┼───────┼─────────┼────────┼──────┤
<span class="blue">i</span> │ localhost │ 1 │ 0 │ <span class="green">1</span> │ 0 │ 0 │ 3s │
<span class="blue">i</span> ╰───────────┴───────┴────┴───────┴─────────┴────────┴──────╯
</div>
</div>
</div>
</div>
<div class="blue_section">
<div class="container">
<div class="row">
<div class="col-sm-2 feature">
<div class="feature-icon"><i class="fas fa-laptop"></i></div>
<p><strong>Decentralized.</strong> There is no server. Just your laptop and your army of nodes.</p>
</div>
<div class="col-sm-2 feature">
<div class="feature-icon"><i class="fas fa-tachometer-alt"></i></div>
<p><strong>Quick</strong> and <strong>easy</strong> to get started. You don't even need to know Python.</p>
</div>
<div class="col-sm-2 feature">
<div class="feature-icon"><i class="fas fa-plane"></i></div>
<p><strong>Lightweight.</strong> Even managing just a single machine won't feel like overkill.</p>
</div>
<div class="col-sm-2 feature">
<div class="feature-icon"><i class="fas fa-cloud-upload-alt"></i></div>
<p><strong>Push</strong> configuration directly using <strong>SSH</strong>. No agent required.</p>
</div>
<div class="col-sm-2 feature">
<div class="feature-icon"><i class="far fa-heart"></i></div>
<p>Free as in bird.<br>100% <strong>Free Software</strong>.<br>No Enterprise Edition.</p>
</div>
<div class="col-sm-2 feature">
<div class="feature-icon"><i class="fas fa-code"></i></div>
<p><strong>Pythonic</strong> and hackable.<br>Write hooks, custom items or use it as a library.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 cta">
<a href="https://docs.bundlewrap.org/guide/quickstart/">Get started <i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
<footer class="blue_section">
<a href="https://github.com/bundlewrap/bundlewrap"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/bundlewrap"><i class="fab fa-twitter"></i></a>
<a href="https://docs.bundlewrap.org"><i class="fa fa-book"></i></a>
</footer>
</body>
</html>