Mon 06 February 2017
One really good thing about packing your apps with Docker is that you're building once and deploying many times in many different places (environments), because of this it's a good idea to make your app configurable at the environment level (not just files). This means that you should avoid having …
Continue reading »
Sat 28 January 2017
Today I want to share with you how you can create a Hello World API with .NET Core but running inside of a Docker container and not just that, we will be able to even debug the API with Visual Studio (VS) and then I'll explain how easy is to …
Continue reading »
Tue 24 January 2017
One of the most crutial things for a Web API is to know how many resources
you'll need to run it, this based on how much traffic you will (or expect to)
receive, the response time of your API and the payload (the content that it will
retrieve). And when …
Continue reading »