Skip to content

Commit

Permalink
fixing links
Browse files Browse the repository at this point in the history
Signed-off-by: chaosinthecrd <[email protected]>
  • Loading branch information
ChaosInTheCRD committed Feb 21, 2024
1 parent 5b98a27 commit 0e9c3c3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

**[DOCS](https://witness.dev)
[CONTRIBUTING](/CONTRIBUTING.md)
[LICENSE](/LICENSE)**
[LICENSE](https://github.com/in-toto/witness/blob/main/LICENSE)

`bash <(curl -s https://raw.githubusercontent.com/in-toto/witness/main/install-witness.sh)`
</center>
Expand Down
2 changes: 1 addition & 1 deletion docs-website/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function HomepageHeader() {
<div className={styles.buttons}>
<Link
className="button button--primary button--lg"
to="/docs/tutorials/getting-started"
to="/docs/docs/tutorials/getting-started"
style={{color: 'black' }}>
Try the Witness Getting Started Tutorial! 🦉
</Link>
Expand Down
2 changes: 1 addition & 1 deletion docs/about/how-witness-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Witness is able to observe your software development life-cycle (SDLC) by wrappi
For storage, the Witness project can upload signed attestations to an [Archivista](https://github.com/in-toto/archivista) server, a graph and storage service for in-toto attestations. This enables the discovery and retrieval of attestations for verification of software artifacts.

### Verifying
Witness allows users to verify the attestations that they generate by providing the `witness verify` command. To achieve this, Witness uses a [policy file](./docs/concepts/policy.md) defined by the user to check for presence of the expected attestations and that they were signed by the appropriate functionaries (Public keys or roots of trust that are trusted to sign certain types of attestation). To verify the attestation body itself, Witness supports defining [OPA Rego](https://www.openpolicyagent.org/docs/latest/policy-language/) policies inside the policy file. This allows users to ensure the facts asserted by the Attestors are reported expected.
Witness allows users to verify the attestations that they generate by providing the `witness verify` command. To achieve this, Witness uses a [policy file](/docs/concepts/policy.md) defined by the user to check for presence of the expected attestations and that they were signed by the appropriate functionaries (Public keys or roots of trust that are trusted to sign certain types of attestation). To verify the attestation body itself, Witness supports defining [OPA Rego](https://www.openpolicyagent.org/docs/latest/policy-language/) policies inside the policy file. This allows users to ensure the facts asserted by the Attestors are reported expected.

16 changes: 0 additions & 16 deletions docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@ witness run [cmd] [flags]
-l, --log-level string Level of logging to output (debug, info, warn, error) (default "info")
```

### SEE ALSO

* [witness](witness.md) - Collect and verify attestations about your build environments

## witness sign

Signs a file
Expand Down Expand Up @@ -122,10 +118,6 @@ witness sign [file] [flags]
-l, --log-level string Level of logging to output (debug, info, warn, error) (default "info")
```

### SEE ALSO

* [witness](witness.md) - Collect and verify attestations about your build environments

## witness verify

Verifies a witness policy
Expand Down Expand Up @@ -168,10 +160,6 @@ witness verify [flags]
-l, --log-level string Level of logging to output (debug, info, warn, error) (default "info")
```

### SEE ALSO

* [witness](witness.md) - Collect and verify attestations about your build environments

## witness version

Prints out the witness version
Expand All @@ -197,7 +185,3 @@ witness version [flags]
-l, --log-level string Level of logging to output (debug, info, warn, error) (default "info")
```

### SEE ALSO

* [witness](witness.md) - Collect and verify attestations about your build environments

2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
base = "docs-website/"
command = "npm run build"
publish = "build/"
ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF . ../docs/ ../examples/"
ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF . ../docs/"

[build.environment]
NODE_VERSION = "18.12.1"

0 comments on commit 0e9c3c3

Please sign in to comment.