Angular SPA
- This project deploys a simple Single Page Application built using Angular.io.
- The project uses a S3 storage bucket to store the application assets and a CDN to cache the content at the edge.
Pricing
- The infrastructure required for this application uses exclusively "serverless", pay-per-use infrastructure. If your load won't get high, these costs will be close to $0.
Prerequisites
If you're deploying from your local machine (not from a CI/CD pipeline), you need the following prerequisites:
Stacktape installed. To install it, you can follow the installation instructions.
Node.js installed.
(optional) install Stacktape VSCode extension with validation, autocompletion and on-hover documentation.
1. Generate your project
The command below will bootstrap the project with pre-built application code and pre-configured stacktape.yml
config file.
Copy
stp init --projectId angular-spa
2. Deploy your stack
- To provision all the required infrastructure and to deploy your application to the cloud, all you need is a single command.
- The deployment will take ~5-15 minutes. Subsequent deploys will be significantly faster.
Copy
stp deploy --stage <<stage>> --region <<region>>
stage
is an arbitrary name of your environment (for example staging, production or dev-john)
region
is the AWS region, where your stack will be deployed to. All the available regions are listed below.
Region name & Location | code |
---|---|
Europe (Ireland) | eu-west-1 |
Europe (London) | eu-west-2 |
Europe (Frankfurt) | eu-central-1 |
Europe (Milan) | eu-south-1 |
Europe (Paris) | eu-west-3 |
Europe (Stockholm) | eu-north-1 |
US East (Ohio) | us-east-2 |
US East (N. Virginia) | us-east-1 |
US West (N. California) | us-west-1 |
US West (Oregon) | us-west-2 |
Canada (Central) | ca-central-1 |
Africa (Cape Town) | af-south-1 |
Asia Pacific (Hong Kong) | ap-east-1 |
Asia Pacific (Mumbai) | ap-south-1 |
Asia Pacific (Osaka-Local) | ap-northeast-3 |
Asia Pacific (Seoul) | ap-northeast-2 |
Asia Pacific (Singapore) | ap-southeast-1 |
Asia Pacific (Sydney) | ap-southeast-2 |
Asia Pacific (Tokyo) | ap-northeast-1 |
China (Beijing) | cn-north-1 |
China (Ningxia) | cn-northwest-1 |
Middle East (Bahrain) | me-south-1 |
South America (São Paulo) | sa-east-1 |
3. Test your application
After a successful deployment, some information about the stack will be printed to the console (URLs of the deployed services, links to logs, metrics, etc.).
- Explore the app by visiting webBucket -> cdnUrl. URL was printed into console after the deploy.
4. Hotswap deploys
Stacktape deployments use AWS CloudFormation under the hood. It brings a lot of guarantees and convenience, but can be slow for certain use-cases.
To speed up the deployment, you can use the --hotSwap flag that avoids Cloudformation.
Hotswap deployments work only for source code changes (for lambda function, containers and batch jobs) and for content uploads to buckets.
If the update deployment is not hot-swappable, Stacktape will automatically fall back to using a Cloudformation deployment.
Copy
stacktape deploy --hotSwap --stage <<stage>> --region <<region>>
5. Delete your stack
- If you no longer want to use your stack, you can delete it.
- Stacktape will automatically delete every infrastructure resource and deployment artifact associated with your stack.
Copy
stp delete --stage <<stage>> --region <<region>>
Stack description
Stacktape uses a simple stacktape.yml
configuration file to describe infrastructure resources, packaging, deployment
pipeline and other aspects of your services.
You can deploy your services to multiple environments (stages) - for
example production
, staging
or dev-john
. A stack is a running instance of a service. It consists of your application
code (if any) and the infrastructure resources required to run it.
The configuration for this service is described below.
1. Service name
You can choose an arbitrary name for your service. The name of the stack will be constructed as
{service-name}-{stage}
.
Copy
serviceName: angular-spa
2. Resources
- Every resource must have an arbitrary, alphanumeric name (A-z0-9).
- Stacktape resources consist of multiple (sometimes more than 15) underlying AWS or 3rd party resources.
2.1 Bucket
Bucket contains the built Angular Single-page application (SPA):
- The built app is automatically uploaded into the bucket as a part of the deployment process.
- CDN is configured in front of the bucket to deliver your SPA across the world with minimal latency.
- To ensure that the CDN always serves the newest version of the app, CDN cache is automatically invalidated (flushed) after each deployment.
Copy
resources:webBucket:type: bucketproperties:directoryUpload:directoryPath: ./distheadersPreset: single-page-appcdn:enabled: truerewriteRoutesForSinglePageApp: trueinvalidateAfterDeploy: true
3. Application build hook
To automatically build the application before each deployment, the stacktape configuration contains a script and a hook.
Script specifies the command to be executed. To execute it automatically every time before the stack is deployed, we reference it inside a hook.
Copy
scripts:build:# or "yarn build"executeCommand: npm run buildhooks:- triggers: ['before:deploy', 'before:bucket:sync']scriptName: build
You can also execute the script manually anytime using stp script:run
command.