美文网首页
easy-mock本地部署

easy-mock本地部署

作者: smaVivian | 来源:发表于2020-06-11 18:43 被阅读0次
    1. 安装redis https://www.runoob.com/redis/redis-install.html
      下载 Redis-x64-xxx.zip压缩包到 C 盘,解压后,将文件夹重新命名为 redis,打开一个 cmd 窗口 使用 cd 命令切换目录到 C:\redis 运行:
      redis-server.exe redis.windows.conf

    2. 安装mongoDB https://www.runoob.com/mongodb/mongodb-window-install.html

    3. 本地easymock项目 (node版本8.10.0)
      git clone https://github.com/easy-mock/easy-mock.git
      npm run dev
      访问 http://127.0.0.1:7300

    4. Easy Mock 线上项目迁移工具: https://github.com/easy-mock/migrate2local
      git clone https://github.com/easy-mock/migrate2local.git
      cd migrate2local
      npm install

    配置config

    // config.js
    module.exports = {
      onlineUserName: '', // 线上用户名(easy-mock.com)
      onlineUserPassword: '', // 线上用户密码(easy-mock.com)
      domain: '', // 自建的站点域名(如:http://localhost:7300)
      localUserName: '', // 自建站点的用户名
      localUserPassword: '' // 自建站点的用户密码
    }
    

    执行node index.js

    注意

    我使用的版本:node: v8.10.0

    参考:
    https://github.com/easy-mock/easy-mock/blob/dev/README.zh-CN.md
    https://juejin.im/post/5b9a2fcc5188255c5b5c24b1

    相关文章

      网友评论

          本文标题:easy-mock本地部署

          本文链接:https://www.haomeiwen.com/subject/eqxitktx.html