|
|
|
|
|
by iglio
1345 days ago
|
|
I think the suggestions of docker are overly specific. The industry gold standard for any given software application that will be deployed to the cloud is: - Define infrastructure as code (terraform, AWS CDK, etc.) - Have automated mechanisms in place to deploy self contained pre-production and production environments of the above infrastructure - Allow developers to create a “personal” deployment of the above, similar to a pre-production environment but with any changes the developer wishes to make as part of development. This should be as simple as running a few commands. Some harnessing that allows for completely local development of portions (or all of, depending on the software application) of the above can also be desirable, to speed up development. |
|