Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 15, 2023
1 parent 85da69d commit 569dc99
Show file tree
Hide file tree
Showing 73 changed files with 7,506 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

<!DOCTYPE html>
<meta charset="utf-8">
<title>Redirecting...</title>
Expand Down
4 changes: 4 additions & 0 deletions latest/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: ceb1be5fd6b4320f1d78c6a4422ef017
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified latest/.doctrees/commands/run.doctree
Binary file not shown.
Binary file added latest/.doctrees/environment.pickle
Binary file not shown.
Binary file modified latest/.doctrees/index.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/application.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/exceptions.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/middlewares.doctree
Binary file not shown.
Binary file added latest/.doctrees/methoddocs/runner.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/subscriptions.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/utils.doctree
Binary file not shown.
Binary file modified latest/.doctrees/userguides/quickstart.doctree
Binary file not shown.
6 changes: 6 additions & 0 deletions latest/_sources/commands/run.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
run
***

.. click:: silverback._cli:run
:prog: run
:nested: none
30 changes: 30 additions & 0 deletions latest/_sources/index.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Silverback Docs

```{eval-rst}
.. toctree::
:caption: User Guides
:maxdepth: 1

userguides/quickstart
```

```{eval-rst}
.. toctree::
:caption: CLI Reference
:maxdepth: 1

commands/run.rst
```

```{eval-rst}
.. toctree::
:caption: Python Reference
:maxdepth: 1

methoddocs/application.md
methoddocs/runner.md
methoddocs/middlewares.md
methoddocs/subscriptions.md
methoddocs/exceptions.md
methoddocs/utils.md
```
10 changes: 10 additions & 0 deletions latest/_sources/methoddocs/application.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# silverback.application

The `silverback.application` module contains the high-level implementation of the the user's
Silverback application, meant to be used to expose method handlers and other functionality.

```{eval-rst}
.. automodule:: silverback.application
:members:
:show-inheritance:
```
7 changes: 7 additions & 0 deletions latest/_sources/methoddocs/exceptions.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# silverback.exceptions

```{eval-rst}
.. automodule:: silverback.exceptions
:members:
:show-inheritance:
```
10 changes: 10 additions & 0 deletions latest/_sources/methoddocs/middlewares.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# silverback.middlewares

The `silverback.middlewares` module contains middleware intended to improve the usability of
silverback as a whole, and add integrations for the silverback platform as well.

```{eval-rst}
.. automodule:: silverback.middlewares
:members:
:show-inheritance:
```
10 changes: 10 additions & 0 deletions latest/_sources/methoddocs/runner.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# silverback.runner

The `silverback.runner` module contains implementations for running Silverback apps in a variety
of different scenarios and trigger methods.

```{eval-rst}
.. automodule:: silverback.runner
:members:
:show-inheritance:
```
10 changes: 10 additions & 0 deletions latest/_sources/methoddocs/subscriptions.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# silverback.subscriptions

The `silverback.subscriptions` module contains an implementation of a Websocket subscription queue,
used for connected to an RPC node via websockets that implements the `eth_subscribe` RPC method.

```{eval-rst}
.. automodule:: silverback.subscriptions
:members:
:show-inheritance:
```
7 changes: 7 additions & 0 deletions latest/_sources/methoddocs/utils.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# silverback.utils

```{eval-rst}
.. automodule:: silverback.utils
:members:
:show-inheritance:
```
2 changes: 2 additions & 0 deletions latest/_sources/userguides/quickstart.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
```{include} ../../README.md
```
Loading

0 comments on commit 569dc99

Please sign in to comment.