# web
**Repository Path**: dolphindb/web
## Basic Information
- **Project Name**: web
- **Description**: DolphinDB 数据库 web 管理界面
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-12-07
- **Last Updated**: 2023-09-01
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# DolphinDB Web
## [English](./README.md) | 中文
### Console: DolphinDB 数据库 Web 管理界面

#### 使用方法
用浏览器访问 DolphinDB server 的 `IP:端口` 即可使用
如需更新 web 界面,在右边的 releases 中 (https://github.com/dolphindb/web/releases) 下载最新的 web.xxxx.xx.xx.xx.zip 压缩包,用压缩包中的 web 文件夹直接替换 DolphinDB server 安装目录中的 web 文件夹即可,可以热替换,不需要重启服务器,替换后刷新网页即可。
### Cloud: DolphinDB K8S 云平台 Web 管理界面

#### 使用方法
https://github.com/dolphindb/Tutorials_CN/blob/master/%E5%AE%89%E8%A3%85%E5%92%8C%E9%83%A8%E7%BD%B2/k8s_deployment.md
### 构建及开发方法
```shell
git clone https://github.com/dolphindb/web.git
cd web
npm i --force
# 1. 构建 console
npm run build
# 完成后产物在 web 文件夹中
# 2. 构建 cloud
npm run build.cloud
# 完成后产物在 web.cloud 文件夹中
# 3. 开发
npm run dev
# 4. 扫描词条
npm run scan
```