admin-vben/apps/backend-mock
dependabot[bot] 28b54b587a
chore(deps): bump the non-breaking-changes group with 3 updates (#4561)
* chore(deps): bump the non-breaking-changes group with 3 updates

Bumps the non-breaking-changes group with 3 updates: [@changesets/cli](https://github.com/changesets/changesets), [vue](https://github.com/vuejs/core) and [@vue/shared](https://github.com/vuejs/core/tree/HEAD/packages/shared).


Updates `@changesets/cli` from 2.27.8 to 2.27.9
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.27.8...@changesets/cli@2.27.9)

Updates `vue` from 3.5.10 to 3.5.11
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.5.10...v3.5.11)

Updates `@vue/shared` from 3.5.10 to 3.5.11
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.11/packages/shared)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vue
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@vue/shared"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: update deps

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-05 09:52:04 +08:00
..
api chore(deps): bump the non-breaking-changes group with 3 updates (#4561) 2024-10-05 09:52:04 +08:00
middleware feat: refactor and improve the request client and support refreshToken (#4157) 2024-08-19 22:59:42 +08:00
routes feat: use simpler nitro instead of nestjs to implement mock service 2024-07-20 08:31:05 +08:00
utils feat: add vxe-table component (#4563) 2024-10-04 23:05:28 +08:00
.env feat: refactor and improve the request client and support refreshToken (#4157) 2024-08-19 22:59:42 +08:00
README.md feat: refactor and improve the request client and support refreshToken (#4157) 2024-08-19 22:59:42 +08:00
error.ts fix: change deprecated func (#4236) 2024-08-26 20:32:02 +08:00
nitro.config.ts feat: Feature/pro docs (#70) 2024-07-28 14:29:05 +08:00
package.json feat: add vxe-table component (#4563) 2024-10-04 23:05:28 +08:00
tsconfig.build.json feat: add backend-mock app 2024-06-30 14:09:44 +08:00
tsconfig.json feat: use simpler nitro instead of nestjs to implement mock service 2024-07-20 08:31:05 +08:00

README.md

@vben/backend-mock

Description

Vben Admin 数据 mock 服务,没有对接任何的数据库,所有数据都是模拟的,用于前端开发时提供数据支持。线上环境不再提供 mock 集成,可自行部署服务或者对接真实数据,由于 mock.js 等工具有一些限制,比如上传文件不行、无法模拟复杂的逻辑等,所以这里使用了真实的后端服务来实现。唯一麻烦的是本地需要同时启动后端服务和前端服务,但是这样可以更好的模拟真实环境。该服务不需要手动启动,已经集成在 vite 插件内,随应用一起启用。

Running the app

# development
$ pnpm run start

# production mode
$ pnpm run build