This is an automated email from the ASF dual-hosted git repository.

tanruixiang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-horaedb.git


The following commit(s) were added to refs/heads/main by this push:
     new 4161f491 fix: the broken link about the issue status (#1402)
4161f491 is described below

commit 4161f4913a40e704e0eeb864d4067f204486936f
Author: WEI Xikai <[email protected]>
AuthorDate: Mon Dec 25 16:04:36 2023 +0800

    fix: the broken link about the issue status (#1402)
    
    ## Rationale
    The link about the issue status is broken.
    
    ## Detailed Changes
    Fix the broken link.
    
    ## Test Plan
    Ensure that the rendered issue status works.
---
 README.md | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index f9e1944d..29c34d35 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 ![License](https://img.shields.io/badge/license-Apache--2.0-green.svg)
 
[![CI](https://github.com/apache/incubator-horaedb/actions/workflows/ci.yml/badge.svg)](https://github.com/apache/incubator-horaedb/actions/workflows/ci.yml)
-[![OpenIssue](https://img.shields.io/github/issues/incubator-horaedb/horaedb)](https://github.com/apache/incubator-horaedb/issues)
+[![OpenIssue](https://img.shields.io/github/issues/apache/incubator-horaedb)](https://github.com/apache/incubator-horaedb/issues)
 <!-- 
[![Docker](https://img.shields.io/docker/v/horaedb/horaedb-server?logo=docker)](https://hub.docker.com/r/horaedb/horaedb-server)
 TODO need to wait for first apache version release.-->
 
 [中文](./README-CN.md)
@@ -8,13 +8,17 @@
 HoraeDB is a high-performance, distributed, cloud native time-series database.
 
 ## Documentation
+
 - [User Guide](https://apache.github.io/incubator-horaedb-docs)
 - [Development 
Guide](https://apache.github.io/incubator-horaedb-docs/dev/compile_run.html)
 - [Roadmap](https://apache.github.io/incubator-horaedb-docs/dev/roadmap.html)
 
 ## Quick Start
+
 ### Run with Docker
-Run HoraeDB standalone Server. 
+
+Run HoraeDB standalone Server.
+
 ```
 docker run -d --name horaedb-server \
   -p 8831:8831 \
@@ -24,6 +28,7 @@ docker run -d --name horaedb-server \
 ```
 
 Create Table.
+
 ```
 curl --location --request POST 'http://127.0.0.1:5440/sql' \
 -d '
@@ -39,6 +44,7 @@ ENGINE=Analytic
 ```
 
 Write data with SQL.
+
 ```
 curl --location --request POST 'http://127.0.0.1:5440/sql' \
 -d '
@@ -48,6 +54,7 @@ INSERT INTO demo (t, name, value)
 ```
 
 Read data with SQL.
+
 ```
 curl --location --request POST 'http://127.0.0.1:5440/sql' \
 -d '
@@ -56,9 +63,11 @@ SELECT * FROM `demo`
 ```
 
 ### Run from source code
+
 See details 
[here](https://apache.github.io/incubator-horaedb-docs/dev/compile_run.html).
 
 ## Contributing
+
 Any contribution is welcome!
 
 Discuss at [dev mailing list](mailto:[email protected]) 
([subscribe](mailto:[email protected]?subject=(send%20this%20email%20to%20subscribe))
 / 
[unsubscribe](mailto:[email protected]?subject=(send%20this%20email%20to%20unsubscribe))
 / [archives](https://lists.apache.org/[email protected]))
@@ -66,9 +75,11 @@ Discuss at [dev mailing 
list](mailto:[email protected]) ([subscri
 Read our [Contributing Guide](CONTRIBUTING.md) and make your first 
contribution!
 
 ## Acknowledgment
+
 When develop HoraeDB, we benefit a lot from several other open source 
projects,  such as 
[influxdb_iox](https://github.com/influxdata/influxdb/tree/main/influxdb_iox), 
[tikv](https://github.com/tikv/tikv) etc, thanks for their awesome work.
 
 In our production usage, we heavily use 
[OceanBase](https://github.com/oceanbase/oceanbase) as implementation of both 
WAL and ObjectStorage, and OceanBase team help us maintain stability of our 
cluster, thanks for their kindly support.
 
 ## License
+
 HoraeDB is under [Apache License 2.0](./LICENSE).


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to