Skip to content

Getting Started

Bird edited this page Apr 3, 2023 · 1 revision

Getting Started

To start using Mockimouse, download the latest version of executable from here for windows, or use Dockerized version by cloning the repository. In the next step, open the config.yml file with a code editor, and paste following configuration which is a simple scenario with no condition :

MockServer :
 port : 800
 endpoints :
  - name : Hello world endpoint
    path : /hello
    method : GET
    scenarios :
     - description : no condition, always show same message
       response: 
         - Welcome to Hello world 
  - name : Goodbye endpoint
    path : /goodbye
    method : POST
    scenarios :
     - description : no condition, always show goodbye
       response: 
         - Goodbye. See you later

Run the server and browse http://Your-Server-IP:800

Clone this wiki locally