Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 775 Bytes

File metadata and controls

37 lines (24 loc) · 775 Bytes

Application Development for Reusable Microservices

The main objective of this project is to generate a platform which according to consumer’s requirement can automatically generate a microservice with the help of existing microservices already present on the platform.

Setting up the project

TODO: Add script for installation of all packages at once.

To run the server:

$ cd backend
$ node app.js

this will start the server at port 8080

TODO: Add steps for setting up frontend

Setting up test API

$ cd existing-microservice
$ pip3 install pipenv
$ pipenv install
$ pipenv shell
$ python3 server.py

this will start a python-flask server.

Team