From e7dbaaae0f0b855e3ff5f611fa3910afc45a3cff Mon Sep 17 00:00:00 2001 From: Gabriel Grinberg Date: Thu, 15 Feb 2024 09:51:34 +0200 Subject: [PATCH] link to Trigg --- .../src/visual-node-editor/HelpBubble/HelpBubble.tsx | 6 +++++- stdlib/src/Lists/Collect/Collect.tsx | 2 +- website/docs/6-testing-deploying.md | 6 +++--- website/docusaurus.config.js | 8 ++++++++ 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/flow-editor/src/visual-node-editor/HelpBubble/HelpBubble.tsx b/flow-editor/src/visual-node-editor/HelpBubble/HelpBubble.tsx index 479596eed..06b0793d7 100644 --- a/flow-editor/src/visual-node-editor/HelpBubble/HelpBubble.tsx +++ b/flow-editor/src/visual-node-editor/HelpBubble/HelpBubble.tsx @@ -58,9 +58,13 @@ const mainDocItems = [ link: "https://www.flyde.dev/docs/custom-nodes/", }, { - title: "TroubleShooting", + title: "Trouble-shooting", link: "https://www.flyde.dev/docs/troubleshooting/", }, + { + title: "Trigg - Cloud Managed Flyde", + link: "https://www.trigg.dev/?ref=help-menu", + }, ]; export const HelpBubble: React.FC = () => { diff --git a/stdlib/src/Lists/Collect/Collect.tsx b/stdlib/src/Lists/Collect/Collect.tsx index 1b92c03a2..65380088e 100644 --- a/stdlib/src/Lists/Collect/Collect.tsx +++ b/stdlib/src/Lists/Collect/Collect.tsx @@ -43,7 +43,7 @@ const CollectEditor: MacroEditorComp = function CollectEditor({ value={value.count} onChange={(count) => onChange({ ...value, count })} valueRenderer={(props) => ( - + diff --git a/website/docs/6-testing-deploying.md b/website/docs/6-testing-deploying.md index 96e96077f..0fe3f0b46 100644 --- a/website/docs/6-testing-deploying.md +++ b/website/docs/6-testing-deploying.md @@ -6,6 +6,6 @@ A great example is the standard library, which has some tests that use Flyde flo Same goes for deployment, you can use any deployment tool you like. You can use a CI/CD pipeline, a serverless framework, or even a simple bash script. - +:::info +If you're looking for a way to deploy your flows as a service, check out [Trigg](https://www.trigg.dev?ref=flyde-docs), a serverless platform for Flyde. +::: diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 041041241..d319490c9 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -158,6 +158,10 @@ const config = { href: "https://play.flyde.dev", label: "Online Playground", }, + { + href: "https://www.trigg.dev?ref=flyde-header", + label: "Trigg", + }, { href: "https://github.com/flydelabs/flyde", label: "GitHub", @@ -213,6 +217,10 @@ const config = { label: "GitHub", href: "https://github.com/flydelabs/flyde", }, + { + label: "Trigg - Cloud-Managed Flyde for APIs", + href: "https://www.trigg.dev?ref=flyde-footer", + }, ], }, ],