Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix make live command #3590

Merged
merged 2 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ help:
.PHONY: help Makefile

live:
sphinx-autobuild --ignore */_build/* --ignore */tmp/* -b html -n . _build/html
sphinx-autobuild --ignore */_build/* --ignore */tmp/* --ignore */_static/hub-*.json -b dirhtml -n . _build/dirhtml

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@

# -- Options for MyST -------------------------------------------------
panels_add_bootstrap_css = False
myst_footnote_transition = False
myst_enable_extensions = [
"colon_fence",
"deflist",
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/code-review.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Much of our active infrastructure is configured and automatically updated via CI/CD pipelines.
This means that changes in this repository often immediately impact the infrastructure that we run.
As such, we follow team policies for review/merge that are more specific [than our general development merge policies](tc:development:merge-policy).
As such, we follow team policies for review/merge that are more specific [than our general development merge policies](inv:tc#development:merge-policy).

This document codifies our guidelines for doing code review and merging pull requests on active infrastructure (ie, anything in the `infrastructure/` codebase).

Expand Down
2 changes: 1 addition & 1 deletion docs/howto/prepare-for-events/exam.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This page documents what we do to prep, based on our prior experiences.
If the hub has a profile list enabled, based on the instance types setup for
the hub, you can find the new allocation options by running:

```{bash}
```bash
deployer generate resource-allocation choices <instance-type>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ to ensure data is preserved.

## 1. Setup a new hub

Setup [a new hub](../../../topic/infrastructure/config.md) in the target cluster, mimicking
Setup [a new hub](config) in the target cluster, mimicking
the config of the old hub as much as possible.

(copy-home-dirs)=
Expand Down
2 changes: 1 addition & 1 deletion docs/topic/access-creds/secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ For example, if a service we use has become compromised, and we need to generate
To rotate our secrets, take these steps:

1. Determine which configuration file you'd like to update. See [](secrets:locations).
2. Unencrypt the configuration file. See [the team compass documentation](tc:secrets:sops) for instructions on unencrypting.
2. Unencrypt the configuration file. See [the team compass documentation](inv:tc#secrets:sops) for instructions on unencrypting.
3. Generate a new key with `openssl`:

```
Expand Down