Skip to content

Merge develop into prod #397

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

Merged
merged 3 commits into from
Nov 22, 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 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