├── .gitignore ├── README.md └── resource └── readme ├── Overall.png └── logo.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | \.idea/ 3 | 4 | \.DS_Store 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 | # Template7-Introduction 6 | 7 | [![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/tterb/atomic-design-ui/blob/master/LICENSEs) 8 | 9 | Overall introduction of the project Temaplate7. 10 | 11 |
12 |
13 | 14 | The project Template7 is a template of the microservice software product, including dockerize and deployment. 15 | 16 | CI flow uses GitHub actions, once the condition is matched, the CI flow will be triggered, it builds the docker image from the source code and then pushes it to the [dockerhub](https://hub.docker.com/). 17 | 18 | Use [Helm](https://helm.sh/) as a deployment tool. 19 | 20 | ## Overall Design 21 | 22 | ![](./resource/readme/Overall.png) 23 | 24 | | Component | Description | 25 | | :---: | :--- | 26 | | [Backend](https://github.com/Template7/backend) | Core backend service. | 27 | | [Cli-Tool](https://github.com/Template7/cli-tool) | Customized CLI tool for the project, such like DB indexes / data initialize. | 28 | | [Common](https://github.com/Template7/common) | Common lib of the project. | 29 | | [Deployment](https://github.com/Template7/deployment) | Project deployment manifest. | 30 | -------------------------------------------------------------------------------- /resource/readme/Overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Template7/introduction/f5ac0d6e9cbe03d08a447cc1bb6781ac3050db3b/resource/readme/Overall.png -------------------------------------------------------------------------------- /resource/readme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Template7/introduction/f5ac0d6e9cbe03d08a447cc1bb6781ac3050db3b/resource/readme/logo.png --------------------------------------------------------------------------------