If you are planning to build a project with Microservices pattern and DevOps culture, you can use the source code here.
In this source code, I built two services, one for Frontend AngularJS and Bootstrap, one for Backend ExpressJS and Mongoose. All services in this project is dockerized and pushed to Docker Hub. You can read Dockerfile in each service for further details. To create a new service, you just create a new directory, writing source code for that service and update docker-compose.yml file.
Run
The Orchestration of Project is written in docker-compose.yml file. So it is so easily to understand and run the project.
1 |
docker-compose up |
Using Vagrant and Virtualbox
We also start from Virtual Machine layer with Vagrant.
1 |
vagrant up |
After that, you can access the application via link: http://172.20.20.20
You can read Vagrantfile to understand what we need to prepare for VMs.
System Architecture
With the source code, we will have a system architecture as below
Monitor & Logs
This starter project also fully supports monitor by using Telegraf, InfluxDB, Grafana and Kapacitor. Supports centralizing Logs with fluentd, Kibana and Elasticsearch.
Contents
Part | Title | Git Tag |
---|---|---|
1 | Starting with ExpressJS | 1.0 |
2 | Logger with Winston | 1.1 |
4 | Config Management with Node-Config | 1.2 |
5 | Building Create User API | 2.1 |
6 | Adding Swagger Documents | 2.2 |
7 | Building Login API | 2.3 |
8 | Building Get User List/Detail API | 2.4 |
9 | Authorization all APIs | 2.5 |
10 | Unit Test | 2.6 |
11 | Building Config API | 3.0 |
12 | Using Cache | 3.1 |
13 | Using Queue | 3.2 |
14 | Starting AngularJS with Yeoman | 4.0 |
15 | Config Management for AngularJS | 4.1 |
16 | Building Login Page | 4.2 |
17 | Building List User Page | 4.2 |
18 | Pagination with AngularJS and Bootstrap | 4.3 |
19 | Multiple Languages | 4.4 |
20 | AngularJS Unit Test | 4.5 |
21 | Dockerize Aplication | 5.0 |
22 | Orchestration with Docker Compose | 5.1 |