Skip to content

Commit

Permalink
docs: Add ROFL
Browse files Browse the repository at this point in the history
  • Loading branch information
kostko committed Jul 4, 2024
1 parent 57bc8ef commit 7c8a7a0
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 1 deletion.
19 changes: 19 additions & 0 deletions docs/rofl/README.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
description: Build your own ROFL application
---

import DocCardList from '@theme/DocCardList';
import {findSidebarItem} from '@site/src/sidebarUtils';

# Build ROFL Application

This chapter will teach you how to build your own ROFL application with
[Oasis Runtime SDK].

<DocCardList items={[
findSidebarItem('/rofl/prerequisites'),
findSidebarItem('/rofl/app'),
]} />

[Oasis Runtime SDK]:
https://github.com/oasisprotocol/oasis-sdk/tree/main/runtime-sdk
1 change: 1 addition & 0 deletions docs/rofl/app.md
1 change: 1 addition & 0 deletions docs/rofl/prerequisites.md
2 changes: 1 addition & 1 deletion external/oasis-sdk
Submodule oasis-sdk updated 274 files
13 changes: 13 additions & 0 deletions sidebarRofl.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import {SidebarsConfig} from '@docusaurus/plugin-content-docs';

export const sidebarROFL: SidebarsConfig = {
rofl: [
{
type: 'doc',
label: 'Overview',
id: 'rofl/README',
},
'rofl/prerequisites',
'rofl/app',
],
};
2 changes: 2 additions & 0 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {sidebarGeneral} from './sidebarGeneral';
import {sidebarGetInvolved} from './sidebarGetInvolved';
import {sidebarNode} from './sidebarNode';
import {sidebarParaTime} from './sidebarParatime';
import {sidebarROFL} from './sidebarRofl';

const sidebars: SidebarsConfig = {
...sidebarAdrs,
Expand All @@ -16,6 +17,7 @@ const sidebars: SidebarsConfig = {
...sidebarGetInvolved,
...sidebarNode,
...sidebarParaTime,
...sidebarROFL,
};

export default sidebars;

0 comments on commit 7c8a7a0

Please sign in to comment.