Skip to content

Commit 3240d0b

Browse files
Feat/hack o ween tutorial (#249)
* feat: new tutorial page on website * fix: fix link * feat: add binstall instructions --------- Co-authored-by: Willem Wyndham <willem@ahalabs.dev>
1 parent 0809e77 commit 3240d0b

8 files changed

Lines changed: 425 additions & 33 deletions

File tree

website/docs/cli.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
sidebar_position: 3
3-
---
4-
51
# CLI Commands
62

73
Scaffold Stellar provides several CLI commands to help manage your Stellar smart contract development.

website/docs/deploy.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
sidebar_position: 6
3-
---
4-
51
# Deployment
62

73
Coming soon...

website/docs/environments.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
sidebar_position: 4
3-
---
4-
51
# Environment Configuration
62

73
Scaffold Stellar uses an `environments.toml` file to manage different deployment environments and contract configurations.

website/docs/intro.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
sidebar_position: 1
3-
---
4-
51
# Welcome to Scaffold Stellar!
62

73
**Scaffold Stellar** is a developer toolkit for building decentralized applications (dApps) and smart contracts on the [**Stellar** blockchain](https://stellar.org).

website/docs/quick-start.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
sidebar_position: 2
3-
---
4-
51
# Quickstart
62

73
This section walks you through setting up Scaffold Stellar from scratch.

website/docs/registry.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
sidebar_position: 5
3-
---
4-
51
# Registry Guide
62

73
The Stellar Registry is a system for publishing, deploying, and managing smart contracts on the Stellar network. This guide explains how to use the registry CLI tools to manage your contracts.

website/docs/tutorial.mdx

Lines changed: 409 additions & 0 deletions
Large diffs are not rendered by default.

website/sidebars.ts

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
1+
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
22

33
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
44

@@ -14,20 +14,27 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
1414
*/
1515
const sidebars: SidebarsConfig = {
1616
// By default, Docusaurus generates a sidebar from the docs folder structure
17-
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
17+
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
1818

1919
// But you can create a sidebar manually
20-
/*
2120
tutorialSidebar: [
22-
'intro',
23-
'hello',
21+
"intro",
22+
"quick-start",
2423
{
25-
type: 'category',
26-
label: 'Tutorial',
27-
items: ['tutorial-basics/create-a-document'],
24+
type: "doc",
25+
id: "tutorial",
26+
label: "Tutorial",
2827
},
28+
"cli",
29+
"environments",
30+
"registry",
31+
"deploy",
32+
// {
33+
// type: 'category',
34+
// label: 'Tutorial',
35+
// items: ['tutorial-basics/create-a-document'],
36+
// },
2937
],
30-
*/
3138
};
3239

3340
export default sidebars;

0 commit comments

Comments
 (0)