Skip to content
Open
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
17 changes: 17 additions & 0 deletions docs/happy-path.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Happy Path

This guide walks you through creating your first Breadboard using the Visual Editor.

## Creating a Board

1. Open the Visual Editor
2. Create a new board
3. Add some nodes
4. Connect them
5. Save the board as a JSON file

## Next Steps

Now that you've created your first board, you're ready to integrate it into a production application. Boards built in the Visual Editor can be embedded directly into web applications using the Breadboard JavaScript SDK.

The board JSON file you created in this guide can be imported directly into your application code. To learn how to load and run your board in a web app, see the [Using Boards in Apps](./using-boards-in-apps.md) guide.
26 changes: 26 additions & 0 deletions docs/nav-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"navigation": [
{
"title": "Getting Started",
"items": [
{ "title": "Introduction", "path": "/" },
{ "title": "Installation", "path": "/installation" },
{ "title": "Quick Start", "path": "/quick-start" }
]
},
{
"title": "Guides",
"items": [
{ "title": "Happy Path", "path": "/guides/happy-path" },
{ "title": "Using Boards in Apps", "path": "/guides/using-boards-in-apps" }
]
},
{
"title": "Reference",
"items": [
{ "title": "API", "path": "/reference/api" },
{ "title": "CLI", "path": "/reference/cli" }
]
}
]
}
Loading