This is the code repository for Microservice Patterns and Best Practices, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.
Microservices are a hot trend in the development world right now. Many enterprises have adopted this approach to achieve agility and the continuous delivery of applications to gain a competitive advantage. This book will take you through the different design patterns at different stages of the microservice application development process, along with best practices.
All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.
Chapters 01, 02, 07, 08, and 09 don't have codes. The remaining codes are placed in their respective chapter folders.
The code will look like the following:
class TestDevelopmentConfig(TestCase):
def create_app(self):
app.config.from_object('config.DevelopmentConfig')
return app
def test_app_is_development(self):
self.assertTrue(app.config['DEBUG'] is True)
Having some knowledge of OOP and package structure in Go (golang) will make reading this book more interesting.
Click here if you have any feedback or suggestions.