From 43c5ac03f4b0121d37071ae46db78a28ac38bb08 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 5 Aug 2020 22:26:37 -0400 Subject: [PATCH] Add tutorial sections --- docs/tutorials/asyncio.rst | 45 +++++++++++++++++++++++++++++++++++--- 1 file changed, 42 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/asyncio.rst b/docs/tutorials/asyncio.rst index d32c8cd2..9109250d 100644 --- a/docs/tutorials/asyncio.rst +++ b/docs/tutorials/asyncio.rst @@ -1,6 +1,45 @@ -Asyncio tutorial -================ +Asyncio daemon tutorial +======================= -Coming soon... +.. _asyncio-daemon-tutorial: + +This tutorials shows how to build an ``asyncio`` daemon following the dependency injection +principle. + +Start from the scratch or jump to the section: + +.. contents:: + :local: + :backlinks: none + +You can find complete project on the +`Github `_. + +What are we going to build? +--------------------------- + +Prepare the environment +----------------------- + +Project layout +-------------- + +Install the requirements +------------------------ + +Minimal application +------------------- + +HTTP monitor +------------ + +Add another monitor +------------------- + +Tests +----- + +Conclusion +---------- .. disqus::