Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 542 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 542 Bytes

Server installation guide

  1. Clone repo

  2. Change directory to /backend, create an .env file and enter your localhost MongoDB URL

    MongoDB=<Your Mongo DB URL>
    
  3. Start landing-page's dev server

    dotnet run

    If you get "Permission denied error", run:

    sudo dotnet run
  4. Server will run on localhost, port 5000. Using Postman or any API testing tool to make a GET request to server endpoint: http://localhost:5000/Blood

  5. API documentation