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
2 changes: 1 addition & 1 deletion src/components/Header/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const section = frontmatter?.section ?? ""
<script>
window.dataLayer = window.dataLayer || []
function gtag(...args) {
window.dataLayer.push(args)
window.dataLayer.push(arguments)
}
gtag("js", new Date())

Expand Down
6 changes: 5 additions & 1 deletion src/content/docs/en/sdk/guides/devnet-deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ minikube config set memory 8192

Next, we start minikube.

<Aside title="Docker Memory Resource Warning">
You may encounter a warning indicating a memory limit of 7937MB in your Docker Desktop settings. To resolve this, simply increase the memory allocation to the suggested value.
</Aside>

<TabsContent sharedStore="os" client:visible>
<Fragment slot="tab.1">macOS</Fragment>
<Fragment slot="tab.2">Ubuntu</Fragment>
Expand Down Expand Up @@ -208,7 +212,7 @@ then, set it as a env var and run: `echo $ghcr_pat | docker login ghcr.io -u [gi

1. **Bootstrap**

Now we'll install Helm chart dependencies, generate additional config files for our services, and create our `genesis.json` file.
Now we'll install Helm chart dependencies, generate additional config files for our services, and create our `genesis.yaml` file.

```bash
make bootstrap
Expand Down
Loading