-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
182 lines (174 loc) · 6.61 KB
/
index.html
File metadata and controls
182 lines (174 loc) · 6.61 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MacStack</title>
<!-- 1. Reset/Base -->
<link rel="stylesheet" href="clean-slate.css" />
<!-- 2. Layout System -->
<link rel="stylesheet" href="simple-layout.css" />
<!-- 3. Page Theme -->
<link rel="stylesheet" href="macstack.css" />
</head>
<body>
<nav>
<div class="container primary row bar">
<div class="logo row">
<img src="icon-brand.svg" alt="MacStack icon" />
MacStack
</div>
<button
type="button"
onclick="
window.open(
'https://github.com/nohype-ai/MacStack',
'_blank',
'noopener,noreferrer',
)
"
>
★ GitHub
</button>
</div>
</nav>
<header>
<div class="container">
<img src="icon-brand.svg" alt="MacStack" />
<h1>MacStack</h1>
<h2>
Your whole tech stack declared in code<br />and deployed in
seconds
</h2>
</div>
</header>
<section>
<div class="container">
<h3>Setup Script</h3>
<h2>Get started in one minute</h2>
<div class="primary column">
<div class="terminal row bar">
<span>
curl -fsSL https://macstack.dev/setup.sh | zsh
</span>
<button onclick="copyCommand(this)">↓ Copy</button>
</div>
<div class="primary grid">
<div class="step row">
<span class="step-number">1</span>
<div class="step-content">
<h4>Run above command</h4>
<p>
It will ensure Homebrew is present and set
up MacStack
</p>
</div>
</div>
<div class="step row">
<span class="step-number">2</span>
<div class="step-content">
<h4>Set config path</h4>
<p>
Enter the folder path where your stack
config will live
</p>
</div>
</div>
<div class="step row">
<span class="step-number">3</span>
<div class="step-content">
<h4>Apply your config</h4>
<p>
Verify that your stack update now works:
<code class="step-inline-code"
>mack update</code
>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<h3>Tech Stack Config</h3>
<h2>Evolve your stack configuration</h2>
<div class="primary grid">
<div>
<h4>Shell Environment</h4>
Prompt, paths, functions, aliases, environment
</div>
<div>
<h4>Git Configuration</h4>
Personal and general global git settings
</div>
<div>
<h4>Fonts</h4>
All fonts, like Fira code and SF Mono
</div>
<div>
<h4>CLI Tools</h4>
brew, git, pyenv, python, claude-code, etc.
</div>
<div>
<h4>App Store Apps</h4>
Graphical + Mac App Store apps
</div>
<div>
<h4>AI Agent Configurations</h4>
Settings and permissions of AI agents
</div>
<div>
<h4>IDE Configurations</h4>
Settings and keyboard shortuts of IDEs
</div>
<div>
<h4>VS Code Extensions</h4>
Extensions for VS Code based IDEs
</div>
<div>
<h4>Git Repositories</h4>
All your git repositories
</div>
</div>
</div>
</section>
<footer>
<div class="container primary row bar">
<div class="primary row">
<a
href="https://github.com/nohype-ai/MacStack"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>
<a
href="https://nohype.ai"
target="_blank"
rel="noopener noreferrer"
>Nohype AI</a
>
</div>
© 2026 Nohype AI GmbH
</div>
</footer>
<script>
function copyCommand(btn) {
const code = btn
.closest(".terminal")
.querySelector("span")
.textContent.trim();
navigator.clipboard.writeText(code).then(() => {
const original = btn.textContent;
btn.textContent = "Copied";
btn.classList.add("copied");
setTimeout(() => {
btn.textContent = original;
btn.classList.remove("copied");
}, 1800);
});
}
</script>
</body>
</html>