build(deps): bump flat and @vue/cli-plugin-unit-mocha in /frontend

Bumps [flat](https://github.com/hughsk/flat) to 5.0.2 and updates ancestor dependency [@vue/cli-plugin-unit-mocha](https://github.com/vuejs/vue-cli/tree/HEAD/packages/@vue/cli-plugin-unit-mocha). These dependencies need to be updated together.


Updates `flat` from 4.1.1 to 5.0.2
- [Release notes](https://github.com/hughsk/flat/releases)
- [Commits](https://github.com/hughsk/flat/compare/4.1.1...5.0.2)

Updates `@vue/cli-plugin-unit-mocha` from 4.5.13 to 5.0.8
- [Release notes](https://github.com/vuejs/vue-cli/releases)
- [Changelog](https://github.com/vuejs/vue-cli/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vue-cli/commits/v5.0.8/packages/@vue/cli-plugin-unit-mocha)

---
updated-dependencies:
- dependency-name: flat
  dependency-type: indirect
- dependency-name: "@vue/cli-plugin-unit-mocha"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2 files changed
tree: ab824f1fb659a30ba010e97012fee31de302dcfd
  1. .github/
  2. backend/
  3. frontend/
  4. .asf.yaml
  5. .gitignore
  6. casdoor.md
  7. docker-compose.yml
  8. LICENSE
  9. LICENSE-binary
  10. NOTICE
  11. NOTICE-binary
  12. README.md
  13. README_zh.md
README.md

License

IoTDB-Workbench

IoTDB-Workbench是IoTDB的可视化管理工具,可对IoTDB的数据进行增删改查、权限控制等,简化IoTDB的使用及学习成本。 在我们心中IoTDB是最棒的时序数据库之一,我们将一直不遗余力地推动国产时序数据库IoTDB的应用和发展,为本土开源能力的提高、开源生态的发展,贡献自己的力量,欢迎大家加入IoTDB-Workbench的开发及维护,期待你的加入:

微信

后端服务运行

后端服务设计及运行说明

前端服务运行

前端服务运行说明

Casdoor运行

Casdoor单点登录运行说明

Docker

1、构建镜像:将前后后端分别打包构建出target和dist目录,然后在对应的目录下执行命令(当docker hub 有下面镜像时可以省去构建镜像步骤)

  cd bacnkend
  docker build -t apache/iotdb-web-workbench:0.13.0-backend .
  cd frontend
  docker build -t apache/iotdb-web-frontend:0.13.0-frontend .

2、将backend/resources/sqlite目录下的iotdb拷贝到你需要挂载的路径,如/data/iotdb.db

3、在根目录下执行

docker-compose up -d

注意 docker-compose.yml中volumes挂载路径为步骤2中所指定路径;PORTS和你后端端口的值一样。