diff options
author | 2018-05-28 14:32:49 +0200 | |
---|---|---|
committer | 2018-05-28 14:32:49 +0200 | |
commit | 51394c1d7a9287e3ab2af76f23b721e7ab038236 (patch) | |
tree | 853efadad6ea464d1e96d2f1426eaf401b3adeba | |
parent | readme diagram (diff) |
slight formatting changes to readme
-rw-r--r-- | README.md | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -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 + +------------------------------------------------------------------------- ``` |