Questions:
- Why have we included SimpleJWTMiddleware?
- How would you most likely run your microservices, and what server environment would you use?
- Should you define models for your services altogether, or individually per service?
Answers:
- Because it provides us with a basic middleware that takes care of authentification.
- In Docker, with Ubuntu.
- To keep services as independent as possible, they should be defined individually. You might decide to share a common library, but that is not the case typically.