How to do it...

We need to add the code for the rest of the system into our micro repository that we created in the previous recipe.

To do this let's copy the following top-level directories from the Adding a queue-based service micro folder into the root of our current micro folder (the one that is initialized as a GitHub) repository:

  • auditservice
  • eventservice
  • webapp
  • report
  • fuge

Our micro repository directory structure should now look as follows:

micro ├── .gitignore ├── adderservice ├── auditservice ├── deployment ├── eventservice ├── fuge ├── report └── webapp

Let's go ahead and commit our changes and push them to GitHub:

$ cd micro$ git add .$ git commit -m 'added services and webapp'$ git push origin master

Now let's apply the same ...

Get Node Cookbook - Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.