<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>V2.3.0 on HUATUO Documentation</title>
    <link>https://docs.huatuo.tech/en/v2.3.0/</link>
    <description>Recent content in V2.3.0 on HUATUO Documentation</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Thu, 13 Aug 2026 21:53:16 +0800</lastBuildDate>
    <atom:link href="https://docs.huatuo.tech/en/v2.3.0/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Getting started</title>
      <link>https://docs.huatuo.tech/en/v2.3.0/quick-start/</link>
      <pubDate>Mon, 27 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://docs.huatuo.tech/en/v2.3.0/quick-start/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;To help users quickly experience and deploy HUATUO, this document is divided into three sections: &lt;a href=&#34;https://docs.huatuo.tech/en/v2.3.0/quick-start/#1-quick-experience&#34;&gt;Quick Experience&lt;/a&gt;，&lt;a href=&#34;https://docs.huatuo.tech/en/v2.3.0/quick-start/#2-quick-start&#34;&gt;Quick Start&lt;/a&gt;，&lt;a href=&#34;https://docs.huatuo.tech/en/v2.3.0/quick-start/#3-compilation--deployment&#34;&gt;Compilation &amp;amp; Deployment&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt;&#xA;&lt;h3 id=&#34;1-quick-experience&#34;&gt;1. Quick Experience&lt;a class=&#34;td-heading-self-link&#34; href=&#34;#1-quick-experience&#34; aria-label=&#34;Heading self-link&#34;&gt;&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;p&gt;This section helps you quickly explore the frontend capabilities. You can directly access &lt;a href=&#34;http://console.huatuo.tech&#34;&gt;demo station&lt;/a&gt;, such as viewing exception event overviews, exception event context information, metric curves, etc. (Account: huatuo passwd: huatuo1024).&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://console.huatuo.tech/d/autotracing-event&#34;&gt;Events, AutoTracing Dashboard（improvements in progress）&lt;/a&gt;&#xA;&lt;img src=&#34;https://docs.huatuo.tech/img/quickstart-autotrcing-event.png&#34; alt=&#34;autotrcing-event demo diagram​&#34;&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://console.huatuo.tech/d/metrics-host&#34;&gt;Host Metrics Dashboard（improvements in progress）&lt;/a&gt;&#xA;&lt;img src=&#34;https://docs.huatuo.tech/img/quickstart-metrics-host.png&#34; alt=&#34;metrics-host demo diagram&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Building from Source</title>
      <link>https://docs.huatuo.tech/en/v2.3.0/compiling/</link>
      <pubDate>Sun, 11 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://docs.huatuo.tech/en/v2.3.0/compiling/</guid>
      <description>&lt;h3 id=&#34;1-container-build&#34;&gt;1. Container Build&lt;a class=&#34;td-heading-self-link&#34; href=&#34;#1-container-build&#34; aria-label=&#34;Heading self-link&#34;&gt;&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;p&gt;Run the following command to build the project and run static code checks.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ sh build/build-run-testing-image.sh&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Or run each step separately:&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;1. Prepare the build environment&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ docker build --network host -t huatuo/huatuo-bamai-dev:latest -f ./Dockerfile.devel .&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;2. Start the build container&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ docker run -it --pid&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;host --privileged --cgroupns&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;host --network&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;host -v &lt;span class=&#34;k&#34;&gt;$(&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;pwd&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;)&lt;/span&gt;:/go/huatuo-bamai huatuo/huatuo-bamai-dev:latest sh&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;3. Build inside the container&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ make&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;2-publishing-the-image&#34;&gt;2. Publishing the Image&lt;a class=&#34;td-heading-self-link&#34; href=&#34;#2-publishing-the-image&#34; aria-label=&#34;Heading self-link&#34;&gt;&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;p&gt;Use &lt;code&gt;docker build&lt;/code&gt; to publish the latest binary container image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Change Log</title>
      <link>https://docs.huatuo.tech/en/v2.3.0/changelog/</link>
      <pubDate>Sun, 29 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://docs.huatuo.tech/en/v2.3.0/changelog/</guid>
      <description></description>
    </item>
  </channel>
</rss>
