From 75e11a4943af7ecc4169c1e5f800f5aa6978855c Mon Sep 17 00:00:00 2001 From: Supanat Potiwarakorn Date: Thu, 22 Sep 2022 15:34:43 +0700 Subject: [PATCH] fix failing doc build --- packages/cli/src/lib.rs | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/lib.rs b/packages/cli/src/lib.rs index f3b96fc..889339f 100644 --- a/packages/cli/src/lib.rs +++ b/packages/cli/src/lib.rs @@ -1,5 +1,27 @@ -#![allow(rustdoc::invalid_rust_codeblocks)] -#![doc = include_str!("../../../README.md") ] +#![doc = r#" +# Beaker + +

+ + Beaker logo + +

+ +

+ + + + + + +

+ +[Beaker](https://github.com/osmosis-labs/beaker) makes it easy to scaffold a new cosmwasm app, with all of the dependencies for osmosis hooked up, interactive console, a sample front-end, client generation and more. + +- [Getting Started](https://github.com/osmosis-labs/beaker) +- [Command Reference](https://github.com/osmosis-labs/beaker/tree/main/docs/commands) +- [Config Reference](https://github.com/osmosis-labs/beaker/tree/main/docs/config) +"#] mod framework; mod modules;