Skip to content
Open
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/bundle-development/00-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This section covers everything you need to build, test, and publish Massdriver b
- **[Bundle YAML Specification](./bundle-yaml-spec)** - Complete reference for the `massdriver.yaml` file format
- **[Schema Design](./schema-design/overview)** - JSON Schema patterns and Massdriver annotations for building parameter forms
- **[Connections & Artifacts](./connections-artifacts/overview)** - How bundles consume and produce artifacts for type-safe infrastructure composition
- **[Provisioners](./bundle-development/provisioners/overview)** - Configure OpenTofu, Terraform, Helm, and Bicep provisioning steps
- **[Provisioners](./provisioners/overview)** - Configure OpenTofu, Terraform, Helm, and Bicep provisioning steps
- **[Publishing](./publishing/versioning)** - Version, template, and publish bundles to the registry

## Quick start
Expand Down
2 changes: 1 addition & 1 deletion docs/platform-operations/00-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This section covers operating and administering the Massdriver platform.
- **[Monitoring & Alarms](./monitoring-and-alarms)** - Configure alerts and observability
- **[CI/CD Integration](./ci-cd/github-action)** - Automate deployments with GitHub Actions and Azure DevOps
- **[Security](./security/overview)** - Service accounts, authorization, and access control
- **[Self-Hosted](./platform-operations/self-hosted/overview)** - Deploy Massdriver in your own infrastructure
- **[Self-Hosted](./self-hosted/overview)** - Deploy Massdriver in your own infrastructure

## Common operations

Expand Down
12 changes: 9 additions & 3 deletions docs/reference/cli/commands/mass_completion_bash.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,23 @@ If it is not installed already, you can install it via your OS's package manager

To load completions in your current shell session:

source <(mass completion bash)
```bash
source <(mass completion bash)
```

To load completions for every new session, execute once:

#### Linux:

mass completion bash > /etc/bash_completion.d/mass
```bash
mass completion bash > /etc/bash_completion.d/mass
```

#### macOS:

mass completion bash > $(brew --prefix)/etc/bash_completion.d/mass
```bash
mass completion bash > $(brew --prefix)/etc/bash_completion.d/mass
```

You will need to start a new shell for this setup to take effect.

Expand Down
16 changes: 12 additions & 4 deletions docs/reference/cli/commands/mass_completion_zsh.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,29 @@ Generate the autocompletion script for the zsh shell.
If shell completion is not already enabled in your environment you will need
to enable it. You can execute the following once:

echo "autoload -U compinit; compinit" >> ~/.zshrc
```bash
echo "autoload -U compinit; compinit" >> ~/.zshrc
```

To load completions in your current shell session:

source <(mass completion zsh)
```bash
source <(mass completion zsh)
```

To load completions for every new session, execute once:

#### Linux:

mass completion zsh > "${fpath[1]}/_mass"
```bash
mass completion zsh > "${fpath[1]}/_mass"
```

#### macOS:

mass completion zsh > $(brew --prefix)/share/zsh/site-functions/_mass
```bash
mass completion zsh > $(brew --prefix)/share/zsh/site-functions/_mass
```

You will need to start a new shell for this setup to take effect.

Expand Down
26 changes: 12 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,18 @@
"deploy": "docusaurus deploy"
},
"dependencies": {
"@cmfcmf/docusaurus-search-local": "^0.11.0",
"@docusaurus/core": "2.4.1",
"@docusaurus/preset-classic": "2.4.1",
"@docusaurus/theme-mermaid": "2.4.1",
"@graphql-markdown/docusaurus": "^1.29.1",
"classnames": "^2.2.6",
"graphql": "^16.5.0",
"posthog-docusaurus": "^2.0.0",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"resolutions": {
"cytoscape": "3.23.0",
"mermaid": "^9.1.7"
"@cmfcmf/docusaurus-search-local": "^2.0.1",
"@docusaurus/core": "^3.9.2",
"@docusaurus/logger": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-mermaid": "^3.9.2",
"@graphql-markdown/docusaurus": "^1.32.1",
"@mdx-js/react": "^3.1.0",
"classnames": "^2.5.1",
"graphql": "^16.10.0",
"posthog-docusaurus": "^2.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"browserslist": {
"production": [
Expand Down
Loading