Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 471 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 471 Bytes

Node JS, Express, Postgres, Docker !

  • Steps

    1. Clone this repository.
    1. Update config/config.json with your database connection details
    1. Build Docker Image.
docker build . -t <username>/pizza-api
    1. Run the Container.
docker run -p 8010:8010 -d <username>/pizza-api
    1. Check the server.
http://127.0.0.1:8010

Without Docker Image.

    1. To Run Mocha Test Cases
npm test
    1. To test the APIs Simply
npm start