Go to file
liugq f87f3c6599 fix: schema not registered 2024-12-02 11:20:45 +08:00
common feat: add audit logs 2024-04-12 06:31:13 +00:00
config chore: change to framework main branch and reflactor the dependcy 2024-12-01 21:36:06 +08:00
core fix: error of user not found 2024-12-02 11:01:56 +08:00
model fix: build error with basicAuth.Password 2024-11-29 23:08:48 +08:00
modules fix: error of user not found 2024-12-02 11:01:56 +08:00
plugin chore: change to framework main branch and reflactor the dependcy 2024-12-01 21:36:06 +08:00
service fix: wrong alerting time range 2024-05-21 16:09:07 +08:00
.gitignore fix jenkins 2022-11-09 20:00:29 +08:00
Makefile chore: change to framework main branch and reflactor the dependcy 2024-12-01 21:36:06 +08:00
NOTICE add license and notice to build files 2022-06-01 18:10:07 +08:00
README.md chore: change to framework main branch and reflactor the dependcy 2024-12-01 21:36:06 +08:00
bootstrap_check.go fix: build error with basicAuth.Password 2024-11-29 23:08:48 +08:00
console.yml refactor: refactoring event save 2024-11-10 16:05:10 +08:00
main.go fix: schema not registered 2024-12-02 11:20:45 +08:00
ui.go fixed merge master conflicts 2022-10-25 15:06:25 +08:00

README.md

#INFINI Console

INFINI Console for Elasticsearch/OpenSearch/Easysearch

前端开发说明

前端采用 React 开发,最终输出为 .public 目录的纯静态资源,可以独立部署无需依赖 Node 环境。

本地开发环境准备

确保已经安装好nodejs(版本大于等于 8.5.0)环境:

node -v
npm -v

在国内,你可以安装 cnpm 获得更快速、更安全的包管理体验。使用如下命令安装:

npm install -g cnpm@9.2.0 --registry=https://registry.npm.taobao.org

下载项目依赖包

cnpm install
cnpm install -g  cross-env

启动开发模式

cnpm run dev

编译静态资源

cnpm run build

执行该命令后会生成最终的 HTML、CSS 和 JS 到 /.public 目录下。它们是浏览器可以直接识别并运行的代码,这样你就可以将它们部署到你想要的服务器上了。

新增项目依赖包

cnpm install --save md5

前端开发常用链接