File tree Expand file tree Collapse file tree 4 files changed +7
-17
lines changed Expand file tree Collapse file tree 4 files changed +7
-17
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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
1518import datetime
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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----------------------
You can’t perform that action at this time.
0 commit comments