This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
The following commit(s) were added to refs/heads/main by this push:
new 99d2809 Added macOS instructions
99d2809 is described below
commit 99d28098de2e542ac7e58edbbe591c5fa659d1ec
Author: Dave Fisher <[email protected]>
AuthorDate: Tue Nov 25 14:17:24 2025 -0800
Added macOS instructions
---
atr/docs/running-the-server.html | 12 ++++++++++--
atr/docs/running-the-server.md | 15 +++++++++++++--
2 files changed, 23 insertions(+), 4 deletions(-)
diff --git a/atr/docs/running-the-server.html b/atr/docs/running-the-server.html
index ceaa4a8..2e737ef 100644
--- a/atr/docs/running-the-server.html
+++ b/atr/docs/running-the-server.html
@@ -22,13 +22,21 @@
<li><a href="https://github.com/FiloSottile/mkcert">mkcert</a></li>
<li><a href="https://www.python.org/downloads/release/python-3138/">Python
3.13</a></li>
<li><a href="https://docs.astral.sh/uv/#installation">uv</a></li>
+<li><a href="https://github.com/commonmark/cmark">cmark</a></li>
</ul>
<p>You can install Python 3.13 through your package manager or through uv.
Here is how to install these dependencies on <a
href="https://en.wikipedia.org/wiki/Alpine_Linux">Alpine Linux</a>:</p>
-<pre><code class="language-shell">apk add curl git make mkcert@testing
+<pre><code class="language-shell">apk add curl git make mkcert@testing cmark
curl -LsSf https://astral.sh/uv/install.sh | env
UV_INSTALL_DIR="/usr/local/bin" sh
uv python install 3.13
</code></pre>
-<p>You do not need to have Alpine Linux to develop ATR. It should work in any
POSIX style environment.</p>
+<p>For macOS these instructions become:</p>
+<pre><code class="language-shell">brew install mkcert cmark
+curl -LsSf https://astral.sh/uv/install.sh | sh
+rehash
+which uv # confirm matches
+uv python install 3.13
+</code></pre>
+<p>These instructions should work in any POSIX style environment.</p>
<h2 id="run-the-server">Run the server</h2>
<p>Then, to run the server:</p>
<pre><code class="language-shell">cd tooling-trusted-releases/
diff --git a/atr/docs/running-the-server.md b/atr/docs/running-the-server.md
index edc79b1..d7df884 100644
--- a/atr/docs/running-the-server.md
+++ b/atr/docs/running-the-server.md
@@ -32,16 +32,27 @@ To run ATR locally after cloning the source, you will need
to install the follow
* [mkcert](https://github.com/FiloSottile/mkcert)
* [Python 3.13](https://www.python.org/downloads/release/python-3138/)
* [uv](https://docs.astral.sh/uv/#installation)
+* [cmark](https://github.com/commonmark/cmark)
You can install Python 3.13 through your package manager or through uv. Here
is how to install these dependencies on [Alpine
Linux](https://en.wikipedia.org/wiki/Alpine_Linux):
```shell
-apk add curl git make mkcert@testing
+apk add curl git make mkcert@testing cmark
curl -LsSf https://astral.sh/uv/install.sh | env
UV_INSTALL_DIR="/usr/local/bin" sh
uv python install 3.13
```
-You do not need to have Alpine Linux to develop ATR. It should work in any
POSIX style environment.
+For macOS these instructions become:
+
+```shell
+brew install mkcert cmark
+curl -LsSf https://astral.sh/uv/install.sh | sh
+rehash
+which uv # confirm matches
+uv python install 3.13
+```
+
+These instructions should work in any POSIX style environment.
## Run the server
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]