admin-vben/apps/backend-mock
vince cb161eab89 fix: fixed svg icon load failure and enabled global injection bem.scss 2024-07-17 22:30:18 +08:00
..
http feat: Dynamically get the menu from the back end 2024-06-30 15:03:37 +08:00
src fix: resolve redirect not found issue and remove /demos prefix 2024-07-16 07:59:58 +08:00
README.md chore: update app name 2024-07-14 23:10:48 +08:00
ecosystem.config.cjs feat: add backend-mock app 2024-06-30 14:09:44 +08:00
nest-cli.json chore: remove sqlite 2024-06-30 22:28:35 +08:00
package.json fix: fixed svg icon load failure and enabled global injection bem.scss 2024-07-17 22:30:18 +08:00
tsconfig.build.json feat: add backend-mock app 2024-06-30 14:09:44 +08:00
tsconfig.json feat: add backend-mock app 2024-06-30 14:09:44 +08:00

README.md

@vben/backend-mock

Description

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

Running the app

# development
$ pnpm run start

# watch mode
$ pnpm run start:dev

# production mode
$ pnpm run start:prod