Skip to content
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
5 changes: 3 additions & 2 deletions content/views/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ We need to set three new environment variables:
dummy.go libwasmer.so
```

> [!WARNING]
> If `libwasmer.dylib` is missing, re-run the `go get` step and ensure `go env GOPATH` returns a valid path.
{% admonition(type="warning") %}
If `libwasmer.dylib` is missing, re-run the `go get` step and ensure `go env GOPATH` returns a valid path.
{% end %}

19 changes: 11 additions & 8 deletions content/views/quickstart/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ We need to set three new environment variables:
dummy.go libwasmer.so
```

> [!WARNING]
> If `libwasmer.dylib` is missing, re-run the `go get` step and ensure `go env GOPATH` returns a valid path.
{% admonition(type="warning") %}
If `libwasmer.dylib` is missing, re-run the `go get` step and ensure `go env GOPATH` returns a valid path.
{% end %}

## Create a view

Expand Down Expand Up @@ -214,7 +215,7 @@ Now that everything is set up, we can start creating and deploying views.

This tells Viewkit that `testdeploy` will ingest `Log` objects with the specified fields.

Then, check:
1. Then, check:

```shell
viewkit view inspect testdeploy
Expand Down Expand Up @@ -262,9 +263,10 @@ Then, check:
- Updated At: 2026-07-09 09:37:24 +0000 UTC
```

> [!NOTE]
> - `@materialized(if: false)`: treat this as a virtual type, not a persisted table.
> - `transactionHash: String`: minimal example field; real views will define more fields.
{% admonition(type="note") %}
- `@materialized(if: false)`: treat this as a virtual type, not a persisted table.
- `transactionHash: String`: minimal example field; real views will define more fields.
{% end %}

1. Inspect the view again:

Expand Down Expand Up @@ -359,8 +361,9 @@ Then, check:
- Updated At: 2026-07-09 09:39:11 +0000 UTC
```

> ![TIP]
> If you see `libwasmer.dylib` / "image not found" errors, revisit the Wasmer setup.
{% admonition(type="tip") %}
If you see `libwasmer.dylib` / "image not found" errors, revisit the Wasmer setup.
{% end %}

1. Before deploying, validate that your view builds and compiles successfully:

Expand Down
Loading