Skip to content

Commit 30ba137

Browse files
committed
Remove Makefile and replace make commands with direct equivalents
1 parent c9f29d4 commit 30ba137

File tree

4 files changed

+7
-17
lines changed

4 files changed

+7
-17
lines changed

Makefile

Lines changed: 0 additions & 14 deletions
This file was deleted.

admin/create_secrets_files.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
$ export EXISTING_SECRETS_FILE=/existing/file/with/inactive/db/creds
1111
# You may have to run this a few times, but it is idempotent.
1212
$ python admin/create_secrets_files.py
13+
# After creating the secrets, update the encrypted archive:
14+
$ tar cvf secrets.tar ci_secrets/
15+
$ gpg --yes --batch --passphrase=${PASSPHRASE_FOR_VUFORIA_SECRETS} --symmetric --cipher-algo AES256 secrets.tar
1316
"""
1417

1518
import datetime

docs/source/ci-setup.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Add the encrypted secrets files to the repository:
3535

3636
.. code-block:: console
3737
38-
$ PASSPHRASE_FOR_VUFORIA_SECRETS="<CHOSEN_SECRET>" make update-secrets
38+
$ tar cvf secrets.tar ci_secrets/
39+
$ gpg --yes --batch --passphrase=${PASSPHRASE_FOR_VUFORIA_SECRETS} --symmetric --cipher-algo AES256 secrets.tar
3940
$ git add secrets.tar.gpg
4041
$ git commit -m "Update secret archive"
4142
$ git push

docs/source/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ Run the following commands to build and view documentation locally:
120120

121121
.. code-block:: console
122122
123-
$ make docs
124-
$ make open-docs
123+
$ uv run --extra=dev sphinx-build -M html docs/source docs/build -W
124+
$ python -c 'import os, webbrowser; webbrowser.open("file://" + os.path.abspath("docs/build/html/index.html"))'
125125
126126
Continuous Integration
127127
----------------------

0 commit comments

Comments
 (0)