Architecture > Deployment Modes
Introduction
Introduction to the development and production deployment modes.
- what are the two different deployment modes
- why do we need different deployment modes
Overview
The Core and API project application can be deployed in two different deployment modes: development and production.
This is simply because, for development purposes, not all of the production cloud infrastructure resources are needed. For example, for improved security posture, the production mode will deploy all of your AWS Lambda functions into a custom Virtual Private Cloud (VPC) with private subnets. It will also deploy your Amazon Elastic Search Service into multiple availability zones (AZs), in order to provide high availability.
The Admin Area and Website project applications do not posses the ability to be deployed in development and production modes, as it’s not needed.
By default, the development mode is used when deploying into any environment, except prod
. In that case, the production mode will be used.