Skip to content

Latest commit

 

History

History
95 lines (66 loc) · 2.87 KB

README.zh.md

File metadata and controls

95 lines (66 loc) · 2.87 KB

DolphinDB Web

DolphinDB Web

vscode extension installs

English | 中文

DolphinDB 数据库 Web 管理界面

用浏览器访问 DolphinDB server 的 ip:端口 即可使用

如果需要通过 nginx 部署到子路径下(不建议,多转发一次会降低性能),可以参考 ./nginx.conf

开发

在机器上安装最新版的 Node.js 及浏览器。

# 安装 pnpm 包管理器
npm install -g pnpm

git clone https://github.com/dolphindb/web.git

cd web

# 国内网络推荐配置 registry 
pnpm config set registry https://registry.npmmirror.com

# 安装项目依赖
pnpm install

# 将 .vscode/settings.template.json 复制为 .vscode/settings.json
cp .vscode/settings.template.json .vscode/settings.json

# 设置环境变量 NODE_OPTIONS='--experimental-transform-types'
# 1. 当前会话中设置
$env:NODE_OPTIONS = '--experimental-transform-types'
# 2. 添加到系统环境变量 (需重启系统)
# [System.Environment]::SetEnvironmentVariable('NODE_OPTIONS', '--experimental-transform-types', [System.EnvironmentVariableTarget]::User)

# 参考 package.json 中的 scripts

# 开发
pnpm run dev

# 扫描词条
pnpm run scan
# 手动补全未翻译词条
# 再次运行扫描以更新词典文件 dict.json
pnpm run scan

# lint
pnpm run lint

# lint fix
pnpm run fix