-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (83 loc) · 3.49 KB
/
Copy pathindex.html
File metadata and controls
89 lines (83 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>yum.wheels.dev — Wheels Fedora/RHEL repository</title>
<meta name="description" content="Native yum/dnf repository for the Wheels CFML framework CLI. Add the source once, then `dnf upgrade wheels`.">
<style>
:root {
color-scheme: light dark;
--fg: #0f172a;
--bg: #fff;
--muted: #64748b;
--accent: #2563eb;
--code-bg: #f1f5f9;
--border: #e2e8f0;
}
@media (prefers-color-scheme: dark) {
:root {
--fg: #f1f5f9;
--bg: #0f172a;
--muted: #94a3b8;
--accent: #60a5fa;
--code-bg: #1e293b;
--border: #334155;
}
}
* { box-sizing: border-box; }
body {
margin: 0;
font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
color: var(--fg);
background: var(--bg);
}
main { max-width: 720px; margin: 4rem auto; padding: 0 1.5rem; }
h1 { font-size: 2rem; margin: 0 0 0.5rem; }
h2 { font-size: 1.25rem; margin: 2.5rem 0 0.75rem; }
p, li { margin: 0.5rem 0; }
a { color: var(--accent); }
pre {
background: var(--code-bg);
border: 1px solid var(--border);
border-radius: 6px;
padding: 1rem;
overflow-x: auto;
font: 14px/1.5 ui-monospace, "SF Mono", Menlo, monospace;
}
code:not(pre code) {
background: var(--code-bg);
padding: 2px 5px;
border-radius: 3px;
font: 90% ui-monospace, "SF Mono", Menlo, monospace;
}
footer { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }
</style>
</head>
<body>
<main>
<h1>yum.wheels.dev</h1>
<p>Native Fedora/RHEL repository for the <a href="https://wheels.dev">Wheels</a> CFML framework CLI.</p>
<h2>Stable channel</h2>
<pre><code>sudo dnf config-manager --add-repo https://yum.wheels.dev/wheels.repo
sudo dnf install wheels</code></pre>
<h2>Bleeding-edge channel</h2>
<p>Published on every merge to <code>develop</code>. The package is named <code>wheels-be</code> so it can coexist with the stable <code>wheels</code> install on the same host.</p>
<pre><code>sudo dnf config-manager --add-repo https://yum.wheels.dev/wheels-be.repo
sudo dnf install wheels-be</code></pre>
<h2>Upgrading</h2>
<pre><code>sudo dnf upgrade wheels # or wheels-be</code></pre>
<h2>Signing key</h2>
<p>The repository is signed with the Wheels project key. The public half is published at <a href="/wheels.gpg"><code>/wheels.gpg</code></a>. Both <code>.repo</code> files reference it via <code>gpgkey=</code>, so <code>dnf</code> imports it automatically on first refresh. The fingerprint is committed to the <a href="https://github.com/wheels-dev/yum-wheels">source repo</a> in <code>FINGERPRINT</code> for offline verification.</p>
<h2>Other platforms</h2>
<ul>
<li>macOS: <code>brew install wheels</code> — <a href="https://github.com/wheels-dev/homebrew-wheels">wheels-dev/homebrew-wheels</a></li>
<li>Windows: <code>scoop install wheels</code> — <a href="https://github.com/wheels-dev/scoop-wheels">wheels-dev/scoop-wheels</a></li>
<li>Debian/Ubuntu: <code>apt install wheels</code> — <a href="https://apt.wheels.dev">apt.wheels.dev</a></li>
</ul>
<footer>
<p>Hosted on Cloudflare Pages. Repository contents at <a href="https://github.com/wheels-dev/yum-wheels">wheels-dev/yum-wheels</a>.</p>
</footer>
</main>
</body>
</html>