-
-
Notifications
You must be signed in to change notification settings - Fork 226
/
index.html
78 lines (69 loc) · 2.6 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
<!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">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<title>
👢 Strap
</title>
<meta name="description" content="A script to bootstrap a minimal macOS development system with the minimal set of settings and software every macOS developer will want.
">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-primary pt-4 pb-2 mb-4">
<h1 class="container display-1 text-white">
👢 Strap
</h1>
</nav>
<div class="container">
<p class="lead">
Strap is a script to bootstrap a minimal macOS development system with the minimal set of settings and software
every macOS developer will want.
</p>
To Strap your system:
<ol>
<li>
<a href="/strap.sh" class="btn btn-outline-primary btn-sm">
Download the <code>strap.sh</code> script.
</a>
</li>
<li>
Run Strap in Terminal.app with <code>bash ~/Downloads/strap.sh</code>.
</li>
<li>
If something failed, run Strap with more debugging output in
Terminal.app with <code>bash ~/Downloads/strap.sh --debug</code> and
try to debug it yourself, I can't help you, sorry!
</li>
<li>
Install additional software with
<code>brew install</code>.
</li>
</ol>
<p class="lead">
In 2023 I started a company, ☕️ Workbrew, to provide the missing features and support for companies using
Homebrew.
<br>
Workbrew is now available in public beta and has a <strong>Workbrew Bootstrap</strong> feature that's basically
Strap v2.
<br>
Additionally, Workbrew provides MDM integration, fleet configuration, remote <code>brew</code> command execution
and much more.
<br>
Please <a href="https://console.workbrew.com">try it out</a> or
<a href="https://workbrew.com/demo">book a demo</a>.
</p>
</div>
<div class="py-4 mb-4"></div>
<a href="https://github.com/MikeMcQuaid/strap">
<img style="position: absolute; top: 0; right: 0; border: 0; width: 149px; height: 149px;"
src="//aral.github.io/fork-me-on-github-retina-ribbons/[email protected]" alt="Fork me on GitHub">
</a>
<nav class="navbar bg-primary fixed-bottom text-white">
<span class="navbar-brand">👢</span>
<span>Made with ❤️ by <a class="text-white" href="https://mikemcquaid.com">Mike McQuaid</a></span>
</nav>
</body>
</html>