From f351ee7042d4493f9b0cf6a16a18dfc1989aef37 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Tue, 21 Mar 2023 15:01:08 +0800 Subject: [PATCH] docs: update document string and site (#1211) Signed-off-by: Ruihang Xia --- README.md | 1 + src/cmd/src/bin/greptime.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 094ad2530c..06e559c852 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,7 @@ You can always cleanup test database by removing `/tmp/greptimedb`. - GreptimeDB [User Guide](https://docs.greptime.com/user-guide/concepts.html) - GreptimeDB [Developer Guide](https://docs.greptime.com/developer-guide/overview.html) +- GreptimeDB [internal code document](greptimedb.rs) ### Dashboard - [The dashboard UI for GreptimeDB](https://github.com/GreptimeTeam/dashboard) diff --git a/src/cmd/src/bin/greptime.rs b/src/cmd/src/bin/greptime.rs index e16dc6a559..1d5067c8cc 100644 --- a/src/cmd/src/bin/greptime.rs +++ b/src/cmd/src/bin/greptime.rs @@ -12,6 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. +#![doc = include_str!("../../../../README.md")] + use std::fmt; use clap::Parser;