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
362 changes: 362 additions & 0 deletions docs/Gsoc.md

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions docs/deployment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
sidebar_position: 5
---
# MetaCall Deploy
4 changes: 2 additions & 2 deletions docs/tutorials/Climatic.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ tags:
- vue.js
- machine-learning
---
import StarRepo from '@site/src/components/StarRepo.js';
import StarRepo from '@site/src/components/StarRepo';

<StarRepo itemId="1" />
<StarRepo />

## Building a Polyglot Weather Dashboard with MetaCall
In this tutorial, you will learn how to build a **weather dashboard** by integrating **Node.js** for API handling and **Python** for weather analytics. This project demonstrates how to leverage multiple programming languages in a seamless manner using **MetaCall**.
Expand Down
3 changes: 3 additions & 0 deletions docs/tutorials/treetraversal.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import DocusaurusTreeVisualization from "@site/src/components/TreeTraversal/DocusaurusWrapper";

# Traversing a Polyglot Tree with MetaCall
import StarRepo from '@site/src/components/StarRepo';

<StarRepo />

A comprehensive guide to implementing and visualizing tree traversal across multiple programming languages using MetaCall.

Expand Down
36 changes: 29 additions & 7 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,23 @@ const config = {
href: "/docs/category/tutorials",
position: "left",
},
{
label: "Google Summer of Code 2025",
href: "/docs/gsoc",
position: "left",
},
{
href: '/starred',
label: '⭐ Stars',
position: 'right',
},

{
href: 'https://github.com/metacall',
label: 'GitHub',
position: 'right',
},

],
},

Expand All @@ -117,8 +129,8 @@ const config = {
title: "Use MetaCall",
items: [
{
label: "Configuration",
to: "/docs/running-bracket/configuration",
label: "Tutorials",
to: "/docs/category/tutorials",
},
{
label: "Deployment",
Expand All @@ -130,13 +142,18 @@ const config = {
title: "Community",
items: [
{
label: "Examples",
to: "/docs/community/contributing",
label: "Discord",
to: "https://discord.gg/upwP4mwJWa",
},
{
label: "Telegram",
to: "https://t.me/joinchat/BMSVbBatp0Vi4s5l4VgUgg",
},
{
label: "Developing",
to: "/docs/community/development",
label: "Matrix",
to: "https://matrix.to/#/#metacall:matrix.org",
},

],
},
{
Expand All @@ -146,11 +163,16 @@ const config = {
label: "GitHub",
href: "https://github.com/metacall/",
},
{
label: "Gsoc",
href: "/docs/Gsoc",
},

{
label: "Changelog",
href: "https://github.com/metacall/core/releases",
},

],
},
],
Expand All @@ -164,4 +186,4 @@ const config = {
}),
};

export default config;
export default config;
Loading
Loading