You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
example code for a [Django](/django.html) backend.
25
+
example code for a [Django](/django.html) backend. There is also another
26
+
project named
27
+
[django-vue-template](https://github.com/gtalarico/django-vue-template) by
28
+
a different developer so take a peek at that one as well if the first one
29
+
does not suit your needs.
26
30
27
31
*[vuepress](https://vuepress.vuejs.org/)
28
32
([source code](https://github.com/vuejs/vuepress)) is a
@@ -66,5 +70,7 @@ rich apps that run in web browsers.
66
70
(an authentication web [API](/application-programming-interfaces.html))
67
71
in an introductory web application.
68
72
69
-
73
+
*[Exploring Data with Serverless and Vue: Automatically Update GitHub Files With Serverless Functions](https://css-tricks.com/exploring-data-with-serverless-and-vue-part-i/)
74
+
combines a [serverless](/serverless.html) backend with Vue.js on the
Copy file name to clipboardExpand all lines: content/pages/04-web-development/45-microservices.markdown
+27-1Lines changed: 27 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,12 @@ ease further development and deployment. This approach is called the
92
92
text go into how reality gets messy and how to embrace the constraints
93
93
inherent in distributed systems.
94
94
95
-
* In the [Microservices with Docker, Flask, and React](http://testdriven.io/) course, you will learn how to quickly spin up a reproducible development environment with Docker to manage a number of microservices. Once the app is up and running locally, you'll learn how to deploy it to an Amazon EC2 instance. Finally, we'll look at scaling the services on Amazon EC2 Container Service (ECS).
95
+
* In the [Microservices with Docker, Flask, and React](http://testdriven.io/)
96
+
course, you will learn how to quickly spin up a reproducible development
97
+
environment with Docker to manage a number of microservices. Once the app
98
+
is up and running locally, you'll learn how to deploy it to an Amazon EC2
99
+
instance. Finally, we'll look at scaling the services on Amazon EC2
100
+
Container Service (ECS).
96
101
97
102
* Zuul is open source proxy for combining multiple microservices into a
98
103
unified API call. Check out this post on
@@ -102,3 +107,24 @@ ease further development and deployment. This approach is called the
has some good thoughts on how to explain your microservice API to
117
+
other developers such as clearly showing all of the endpoints as well as
118
+
the intersection of multiple endpoints.
119
+
120
+
*[Best practices for building a microservice](https://www.vinaysahni.com/best-practices-for-building-a-microservice-architecture)
121
+
is an exhaustive (and somewhat exhausting to read!) list with what you
122
+
should think about as you build your microservice.
123
+
124
+
*[The Hardest Part About Microservices: Your Data](http://blog.christianposta.com/microservices/the-hardest-part-about-microservices-data/)
125
+
presents a data-centric view on how to structure and transport data
126
+
in a microservices architecture.
127
+
128
+
*[Making microservices more resilient with circuit breakers](https://blog.buoyant.io/2017/01/13/making-microservices-more-resilient-with-circuit-breaking/)
129
+
provides a solid idea for how to handle issues with microservices so the
130
+
problems are less likely to cascade through your entire infrastructure.
0 commit comments