chunshao90 commented on code in PR #132: URL: https://github.com/apache/horaedb-docs/pull/132#discussion_r1722997424
########## .gitignore: ########## @@ -6,3 +6,10 @@ # vscode files .vscode + +/resources +*lock +/public +/node_modules +package.json +package-lock.json Review Comment: Add a blank line. ########## hugo.toml: ########## @@ -0,0 +1,87 @@ +baseURL = 'https://horaedb.apache.org/' +languageCode = 'en-us' +title = 'Apache HoraeDB' +contentDir = "content/en" +defaultContentLanguage = "en" +defaultContentLanguageInSubdir = false +enableMissingTranslationPlaceholders = true + +enableRobotsTXT = true + +# Will give values to .Lastmod etc. +enableGitInfo = true + +[languages] +[languages.en] +languageName ="English" +# Weight used for sorting. +weight = 1 +[languages.en.params] +description = "A high-performance, distributed, cloud native time-series database." + +[languages.cn] +languageName ="中文" +contentDir = "content/cn" +[languages.cn.params] +description = "一款高性能、分布式的云原生时序数据库" + +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true + [markup.goldmark.parser.attribute] + block = true + [markup.highlight] + noClasses = false + style = "tango" + +[module] +proxy = "https://goproxy.cn,direct" +[[module.imports]] +path = "github.com/google/docsy" + +[params] +github_repo = "https://github.com/apache/horaedb-docs" +github_project_repo = "https://github.com/apache/horaedb" +offlineSearch = true + +[params.links] +[[params.links.user]] + name = "GitHub Discussions" + url = "https://github.com/apache/horaedb/discussions" + icon = "fa-solid fa-circle-question" + desc = "Discussion and help from your fellow users" +[[params.links.user]] + name ="Weixin" + url = "https://example.org/" Review Comment: Use HoraeDB's Weixin Official Accounts. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
