Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 924 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 924 Bytes

Microservice-Boilerplate

This microservice boiler plate is designed so that a developer can just focus on the business logic and not worry about anything else. This boilerplate has inbuild modules pre-written which can be managed from app.conf file

styled with prettier tslint

Clone or Downlowd

git clone https://github.com/merajsiddiqui/microservice-boilerplate.git {project}

Remove git refrence to attach to your repo

cd {project}
rm -rf .git

Initialize new git repo with your own repo

git init
git remote add origin [email protected]:{your_repository}.git
git add .
git commit -m "Initial commit"
git push -u origin master

Installing packages

yarn install