Skip to content

Gateway Service

Chirag Indi edited this page Feb 22, 2021 · 2 revisions

API gateway acts as a single entry point into the system. It takes all API calls from clients, then routes them to the appropriate microservice, and possibly aggregates the response before returning it to the client.

Dependencies

  • Python

Post: 8081

How to run

cd scrapbook-gateway-service

python3 -m env env # creating a virtual environment

source env/bin/activate

pip install -r requirements.txt

python app.py
Clone this wiki locally