aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-05-28 14:32:49 +0200
committerGravatar Christopher Baklid <[email protected]>2018-05-28 14:32:49 +0200
commit51394c1d7a9287e3ab2af76f23b721e7ab038236 (patch)
tree853efadad6ea464d1e96d2f1426eaf401b3adeba
parentreadme diagram (diff)
slight formatting changes to readme
-rw-r--r--README.md30
1 files changed, 15 insertions, 15 deletions
diff --git a/README.md b/README.md
index d1802b5..b8e1eb9 100644
--- a/README.md
+++ b/README.md
@@ -4,21 +4,21 @@ Python sandbox runners for executing code in isolation aka snekbox
The user sends a piece of python code to a snekbox, the snekbox executes the code and sends the result back to the users.
```
- +-------------+ +------------+ +-----------+
- | |---------->| |-------->| | >-------+
-input-> | WEBSERVER | websocket | RABBITMQ | AMQP | SNEKBOX | output |
- | |<----------| |<--------| | <-------+
- +-------------+ +------------+ +-----------+
- ^ ^ ^
- | | |- Executes python code
- | | |- Returns result
- | | +-----------------------
- | |
- | |- Messaging queues opens on demand and closes automatically
- | +-----------------------------------------------------------
- |
- |- Uses websockets for asynchronous connection between webui and webserver
- +-------------------------------------------------------------------------
+ +-------------+ +------------+ +-----------+
+ input -> | |---------->| |-------->| | >----------+
+ | WEBSERVER | websocket | RABBITMQ | AMQP | SNEKBOX | execution |
+result <- | |<----------| |<--------| | <----------+
+ +-------------+ +------------+ +-----------+
+ ^ ^ ^
+ | | |- Executes python code
+ | | |- Returns result
+ | | +-----------------------
+ | |
+ | |- Message queues opens on demand and closes automatically
+ | +---------------------------------------------------------
+ |
+ |- Uses websockets for asynchronous connection between webui and webserver
+ +-------------------------------------------------------------------------
```