build(deps): bump yaml and stylelint in /frontend

Removes [yaml](https://github.com/eemeli/yaml). It's no longer used after updating ancestor dependency [stylelint](https://github.com/stylelint/stylelint). These dependencies need to be updated together.


Removes `yaml`

Updates `stylelint` from 13.13.1 to 15.6.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/stylelint/stylelint/compare/13.13.1...15.6.0)

---
updated-dependencies:
- dependency-name: yaml
  dependency-type: indirect
- dependency-name: stylelint
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2 files changed
tree: 27700bd0a894ecd50fd5d59c93999ed00f141a8e
  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和你后端端口的值一样。