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 eaa45df Note that cmark is not required to run the ATR server
eaa45df is described below
commit eaa45dfa63a4a1abd6b269e2c40fc765286a5c62
Author: Sean B. Palmer <[email protected]>
AuthorDate: Wed Nov 26 14:07:51 2025 +0000
Note that cmark is not required to run the ATR server
---
atr/docs/running-the-server.html | 9 ++++-----
atr/docs/running-the-server.md | 9 ++++-----
2 files changed, 8 insertions(+), 10 deletions(-)
diff --git a/atr/docs/running-the-server.html b/atr/docs/running-the-server.html
index 2e737ef..8f5762b 100644
--- a/atr/docs/running-the-server.html
+++ b/atr/docs/running-the-server.html
@@ -18,25 +18,24 @@
<h2 id="install-dependencies">Install dependencies</h2>
<p>To run ATR locally after cloning the source, you will need to install the
following dependencies:</p>
<ul>
+<li><a href="https://github.com/commonmark/cmark">cmark</a> (optional; for
rebuilding documentation)</li>
<li>Any <a href="https://en.wikipedia.org/wiki/POSIX">POSIX</a> compliant <a
href="https://frippery.org/make/">make</a></li>
<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 cmark
+<pre><code class="language-shell">apk add cmark curl git make mkcert@testing
curl -LsSf https://astral.sh/uv/install.sh | env
UV_INSTALL_DIR="/usr/local/bin" sh
uv python install 3.13
</code></pre>
<p>For macOS these instructions become:</p>
-<pre><code class="language-shell">brew install mkcert cmark
+<pre><code class="language-shell">brew install cmark mkcert
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>
+<p>ATR 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 d7df884..c3dcfdc 100644
--- a/atr/docs/running-the-server.md
+++ b/atr/docs/running-the-server.md
@@ -28,16 +28,16 @@ There are lots of files and directories in the root of the
ATR Git repository. T
To run ATR locally after cloning the source, you will need to install the
following dependencies:
+* [cmark](https://github.com/commonmark/cmark) (optional; for rebuilding
documentation)
* Any [POSIX](https://en.wikipedia.org/wiki/POSIX) compliant
[make](https://frippery.org/make/)
* [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 cmark
+apk add cmark curl git make mkcert@testing
curl -LsSf https://astral.sh/uv/install.sh | env
UV_INSTALL_DIR="/usr/local/bin" sh
uv python install 3.13
```
@@ -45,14 +45,13 @@ uv python install 3.13
For macOS these instructions become:
```shell
-brew install mkcert cmark
+brew install cmark mkcert
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.
+ATR should work in any POSIX style environment.
## Run the server
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]