diff --git a/.gitignore b/docs/.gitignore similarity index 100% rename from .gitignore rename to docs/.gitignore diff --git a/README.rst b/docs/README.rst similarity index 100% rename from README.rst rename to docs/README.rst diff --git a/images/1.png b/docs/images/1.png similarity index 100% rename from images/1.png rename to docs/images/1.png diff --git a/images/2.png b/docs/images/2.png similarity index 100% rename from images/2.png rename to docs/images/2.png diff --git a/images/3.png b/docs/images/3.png similarity index 100% rename from images/3.png rename to docs/images/3.png diff --git a/step1-first-test/my_module.info.yml b/docs/step1-first-test/my_module.info.yml similarity index 100% rename from step1-first-test/my_module.info.yml rename to docs/step1-first-test/my_module.info.yml diff --git a/step1-first-test/tests/src/Functional/MyModuleTest.php b/docs/step1-first-test/tests/src/Functional/MyModuleTest.php similarity index 100% rename from step1-first-test/tests/src/Functional/MyModuleTest.php rename to docs/step1-first-test/tests/src/Functional/MyModuleTest.php diff --git a/step2-adding-more-test-methods/my_module.info.yml b/docs/step2-adding-more-test-methods/my_module.info.yml similarity index 100% rename from step2-adding-more-test-methods/my_module.info.yml rename to docs/step2-adding-more-test-methods/my_module.info.yml diff --git a/step2-adding-more-test-methods/tests/src/Functional/MyModuleTest.php b/docs/step2-adding-more-test-methods/tests/src/Functional/MyModuleTest.php similarity index 100% rename from step2-adding-more-test-methods/tests/src/Functional/MyModuleTest.php rename to docs/step2-adding-more-test-methods/tests/src/Functional/MyModuleTest.php diff --git a/step3-building-a-blog-page/my_module.info.yml b/docs/step3-building-a-blog-page/my_module.info.yml similarity index 100% rename from step3-building-a-blog-page/my_module.info.yml rename to docs/step3-building-a-blog-page/my_module.info.yml diff --git a/step3-building-a-blog-page/my_module.routing.yml b/docs/step3-building-a-blog-page/my_module.routing.yml similarity index 100% rename from step3-building-a-blog-page/my_module.routing.yml rename to docs/step3-building-a-blog-page/my_module.routing.yml diff --git a/step3-building-a-blog-page/src/Controller/BlogPageController.php b/docs/step3-building-a-blog-page/src/Controller/BlogPageController.php similarity index 100% rename from step3-building-a-blog-page/src/Controller/BlogPageController.php rename to docs/step3-building-a-blog-page/src/Controller/BlogPageController.php diff --git a/step3-building-a-blog-page/tests/src/Functional/BlogPageTest.php b/docs/step3-building-a-blog-page/tests/src/Functional/BlogPageTest.php similarity index 100% rename from step3-building-a-blog-page/tests/src/Functional/BlogPageTest.php rename to docs/step3-building-a-blog-page/tests/src/Functional/BlogPageTest.php diff --git a/step3-building-a-blog-page/tests/src/Functional/MyModuleTest.php b/docs/step3-building-a-blog-page/tests/src/Functional/MyModuleTest.php similarity index 100% rename from step3-building-a-blog-page/tests/src/Functional/MyModuleTest.php rename to docs/step3-building-a-blog-page/tests/src/Functional/MyModuleTest.php diff --git a/step4-adding-the-blog-repository/my_module.info.yml b/docs/step4-adding-the-blog-repository/my_module.info.yml similarity index 100% rename from step4-adding-the-blog-repository/my_module.info.yml rename to docs/step4-adding-the-blog-repository/my_module.info.yml diff --git a/step4-adding-the-blog-repository/my_module.routing.yml b/docs/step4-adding-the-blog-repository/my_module.routing.yml similarity index 100% rename from step4-adding-the-blog-repository/my_module.routing.yml rename to docs/step4-adding-the-blog-repository/my_module.routing.yml diff --git a/step4-adding-the-blog-repository/my_module.services.yml b/docs/step4-adding-the-blog-repository/my_module.services.yml similarity index 100% rename from step4-adding-the-blog-repository/my_module.services.yml rename to docs/step4-adding-the-blog-repository/my_module.services.yml diff --git a/step4-adding-the-blog-repository/src/Controller/BlogPageController.php b/docs/step4-adding-the-blog-repository/src/Controller/BlogPageController.php similarity index 100% rename from step4-adding-the-blog-repository/src/Controller/BlogPageController.php rename to docs/step4-adding-the-blog-repository/src/Controller/BlogPageController.php diff --git a/step4-adding-the-blog-repository/src/Repository/ArticleRepository.php b/docs/step4-adding-the-blog-repository/src/Repository/ArticleRepository.php similarity index 100% rename from step4-adding-the-blog-repository/src/Repository/ArticleRepository.php rename to docs/step4-adding-the-blog-repository/src/Repository/ArticleRepository.php diff --git a/step4-adding-the-blog-repository/tests/src/Functional/BlogPageTest.php b/docs/step4-adding-the-blog-repository/tests/src/Functional/BlogPageTest.php similarity index 100% rename from step4-adding-the-blog-repository/tests/src/Functional/BlogPageTest.php rename to docs/step4-adding-the-blog-repository/tests/src/Functional/BlogPageTest.php diff --git a/step4-adding-the-blog-repository/tests/src/Functional/MyModuleTest.php b/docs/step4-adding-the-blog-repository/tests/src/Functional/MyModuleTest.php similarity index 100% rename from step4-adding-the-blog-repository/tests/src/Functional/MyModuleTest.php rename to docs/step4-adding-the-blog-repository/tests/src/Functional/MyModuleTest.php diff --git a/step4-adding-the-blog-repository/tests/src/Kernel/ArticleRepositoryTest.php b/docs/step4-adding-the-blog-repository/tests/src/Kernel/ArticleRepositoryTest.php similarity index 100% rename from step4-adding-the-blog-repository/tests/src/Kernel/ArticleRepositoryTest.php rename to docs/step4-adding-the-blog-repository/tests/src/Kernel/ArticleRepositoryTest.php diff --git a/step5-wrapping-up-with-unit-tests/my_module.info.yml b/docs/step5-wrapping-up-with-unit-tests/my_module.info.yml similarity index 100% rename from step5-wrapping-up-with-unit-tests/my_module.info.yml rename to docs/step5-wrapping-up-with-unit-tests/my_module.info.yml diff --git a/step5-wrapping-up-with-unit-tests/my_module.routing.yml b/docs/step5-wrapping-up-with-unit-tests/my_module.routing.yml similarity index 100% rename from step5-wrapping-up-with-unit-tests/my_module.routing.yml rename to docs/step5-wrapping-up-with-unit-tests/my_module.routing.yml diff --git a/step5-wrapping-up-with-unit-tests/my_module.services.yml b/docs/step5-wrapping-up-with-unit-tests/my_module.services.yml similarity index 100% rename from step5-wrapping-up-with-unit-tests/my_module.services.yml rename to docs/step5-wrapping-up-with-unit-tests/my_module.services.yml diff --git a/step5-wrapping-up-with-unit-tests/src/Controller/BlogPageController.php b/docs/step5-wrapping-up-with-unit-tests/src/Controller/BlogPageController.php similarity index 100% rename from step5-wrapping-up-with-unit-tests/src/Controller/BlogPageController.php rename to docs/step5-wrapping-up-with-unit-tests/src/Controller/BlogPageController.php diff --git a/step5-wrapping-up-with-unit-tests/src/Repository/ArticleRepository.php b/docs/step5-wrapping-up-with-unit-tests/src/Repository/ArticleRepository.php similarity index 100% rename from step5-wrapping-up-with-unit-tests/src/Repository/ArticleRepository.php rename to docs/step5-wrapping-up-with-unit-tests/src/Repository/ArticleRepository.php diff --git a/step5-wrapping-up-with-unit-tests/src/Wrapper/ArticleWrapper.php b/docs/step5-wrapping-up-with-unit-tests/src/Wrapper/ArticleWrapper.php similarity index 100% rename from step5-wrapping-up-with-unit-tests/src/Wrapper/ArticleWrapper.php rename to docs/step5-wrapping-up-with-unit-tests/src/Wrapper/ArticleWrapper.php diff --git a/step5-wrapping-up-with-unit-tests/tests/src/Functional/BlogPageTest.php b/docs/step5-wrapping-up-with-unit-tests/tests/src/Functional/BlogPageTest.php similarity index 100% rename from step5-wrapping-up-with-unit-tests/tests/src/Functional/BlogPageTest.php rename to docs/step5-wrapping-up-with-unit-tests/tests/src/Functional/BlogPageTest.php diff --git a/step5-wrapping-up-with-unit-tests/tests/src/Functional/MyModuleTest.php b/docs/step5-wrapping-up-with-unit-tests/tests/src/Functional/MyModuleTest.php similarity index 100% rename from step5-wrapping-up-with-unit-tests/tests/src/Functional/MyModuleTest.php rename to docs/step5-wrapping-up-with-unit-tests/tests/src/Functional/MyModuleTest.php diff --git a/step5-wrapping-up-with-unit-tests/tests/src/Kernel/ArticleRepositoryTest.php b/docs/step5-wrapping-up-with-unit-tests/tests/src/Kernel/ArticleRepositoryTest.php similarity index 100% rename from step5-wrapping-up-with-unit-tests/tests/src/Kernel/ArticleRepositoryTest.php rename to docs/step5-wrapping-up-with-unit-tests/tests/src/Kernel/ArticleRepositoryTest.php diff --git a/step5-wrapping-up-with-unit-tests/tests/src/Unit/Wrapper/ArticleWrapperTest.php b/docs/step5-wrapping-up-with-unit-tests/tests/src/Unit/Wrapper/ArticleWrapperTest.php similarity index 100% rename from step5-wrapping-up-with-unit-tests/tests/src/Unit/Wrapper/ArticleWrapperTest.php rename to docs/step5-wrapping-up-with-unit-tests/tests/src/Unit/Wrapper/ArticleWrapperTest.php