zoukankan      html  css  js  c++  java
  • easyMock 安装

    EasyMock 的安装与部署: keyi 参考:https://www.jianshu.com/p/627ee2890425?from=singlemessage

    . Environment Build

    Github: https://github.com/easy-mock/easy-mock 

     

    Per  Quick Start in the reference site,  we need install node.js(v8.x, v10.x is not supported ) & MongoDB (>= v3.4) & Redis(>= v4.0).

    1 Install node.js

    # Using Ubuntu

    $> curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -

    > sudo apt-get install -y nodejs

     

    $> nodejs -v

    v8.16.0

    $> npm -v

    6.4.1

     

     

    1. Install MongoDB

    Office site: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/

    Reference Doc:  http://192.168.18.224:8888/svn/Microservices/Infrastructure/trunk/main_body/docs/design/MongoDB_Install.doc 

    1. Install Redis

    Reference Doc: 

     

    https://www.cnblogs.com/lshan/p/10495548.html

     

    1. Install EasyMock

    $> git clone https://github.com/easy-mock/easy-mock.git

    $> cd easy-mock && npm install

     

     

    1. Config EasyMock 

    Update redis password as below:

    { . . .

    "redis": {

        "keyPrefix": "[Easy Mock]",

        "port": 6379,

        "host": "localhost",

        "password": "root",

        "db": 0

      },

      . . .

    }

     

    . Run 

    #cd redis dir

    $> cd redis-5.0.3

     

    #start redis 

    $> sudo /redis-5.0.3$ sudo ./src/redis-server  ./redis.conf

    # Stop 

    #Ctrl+c

     

    #$> cd to easy-mock dir

    # Build front-end assets

     /easy-mock$> sudo npm run build

     

    # Run Easy Mock as production environment (You should run `build` first)

    /easy-mock$> sudo npm run start

    > easy-mock@1.6.0 start /opt/easy-mock

    > cross-env NODE_ENV=production node app

     

    WARNING: NODE_ENV value of 'production' did not match any deployment config file names.

    WARNING: See https://github.com/lorenwest/node-config/wiki/Strict-Mode

    server started at http://0.0.0.0:7300

    #check result, visit http://0.0.0.0:7300

    # Stop 

    #Ctrl+c

  • 相关阅读:
    0316复利计算
    操作系统实验0
    0302-软件工程第一次作业
    1203有穷自动机
    11.11对同学们的作业一些评论
    1029 文法分析
    编译原理第一次上机作业感想
    词法分析编译感想
    0909 初识编译原理
    0909编译原理
  • 原文地址:https://www.cnblogs.com/lshan/p/10969466.html
Copyright © 2011-2022 走看看