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
7 changes: 7 additions & 0 deletions _static/css/pydata-overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,10 @@ sphinx search extension interface.
.search-button__wrapper.show .search-button__search-container {
width: 15%;
}

/* Cap tall code blocks and make them scrollable. Short blocks are unaffected
since max-height only kicks in when content exceeds it. */
.highlight pre {
max-height: 60rem;
overflow: auto;
}
35 changes: 35 additions & 0 deletions _templates/sidebar-main.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,26 @@
</ul>
</details>
</li>
<li class="toctree-l1 has-children">
<a class="reference internal" href="docs/tutorials/example-apps.html">
Example apps
</a>
<details>
<summary>
<span class="toctree-toggle" role="presentation">
<i class="fa-solid fa-chevron-down">
</i>
</span>
</summary>
<ul>
<li class="toctree-l2">
<a class="reference internal" href="docs/tutorials/example-apps/dashmint-lab.html">
DashMint Lab — NFT marketplace
</a>
</li>
</ul>
</details>
</li>
<li class="toctree-l1">
<a class="reference internal" href="docs/tutorials/send-funds.html">
Send funds
Expand Down Expand Up @@ -310,6 +330,11 @@
Non-Fungible Tokens (NFTs)
</a>
</li>
<li class="toctree-l1">
<a class="reference internal" href="docs/explanations/query.html">
Query Capabilities
</a>
</li>
</ul>
<p aria-level="2" class="caption" role="heading">
<span class="caption-text">
Expand Down Expand Up @@ -461,6 +486,16 @@
Repository Overview
</a>
</li>
<li class="toctree-l1">
<a class="reference external" href="https://github.com/dashpay/platform">
Dash Platform Monorepo
</a>
</li>
<li class="toctree-l1">
<a class="reference external" href="https://dashpay.github.io/platform/">
Dash Platform Book
</a>
</li>
<li class="toctree-l1">
<a class="reference external" href="https://bridge.thepasta.org/">
Platform Bridge
Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ tutorials/create-and-fund-a-wallet
tutorials/setup-sdk-client
tutorials/identities-and-names
tutorials/contracts-and-documents
tutorials/example-apps
tutorials/send-funds
tutorials/setup-a-node
tutorials/tui/index
Expand Down
18 changes: 18 additions & 0 deletions docs/tutorials/example-apps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
```{eval-rst}
.. tutorials-example-apps:
```

# Example apps

The tutorials in this section walk through complete, end-to-end applications built on Dash Platform. Unlike the single-operation tutorials elsewhere (for example, [Submit documents](contracts-and-documents/submit-documents.md) or [Register an identity](identities-and-names/register-an-identity.md)), each walkthrough shows how many SDK operations compose together inside a real app.

Each app is a stand-alone project in the [`platform-tutorials/example-apps/`](https://github.com/dashpay/platform-tutorials/tree/main/example-apps) directory. The walkthroughs here tour the code alongside the commands needed to run it locally.

If you are looking for a focused snippet for one SDK call, the per-operation tutorials under [Identities and names](identities-and-names.md) and [Contracts and documents](contracts-and-documents.md) are a better starting point.

```{toctree}
:maxdepth: 2
:titlesonly:

example-apps/dashmint-lab
```
Loading