Maciej Walkowiak 9116c28311 Back to snapshots (#1122) | před 7 měsíci | |
---|---|---|
.. | ||
infrastructure | před 7 měsíci | |
spring-cloud-aws-dynamodb-sample | před 7 měsíci | |
spring-cloud-aws-parameter-store-sample | před 7 měsíci | |
spring-cloud-aws-s3-sample | před 7 měsíci | |
spring-cloud-aws-secrets-manager-sample | před 7 měsíci | |
spring-cloud-aws-ses-sample | před 7 měsíci | |
spring-cloud-aws-sns-sample | před 7 měsíci | |
spring-cloud-aws-sqs-sample | před 7 měsíci | |
.gitignore | před 3 roky | |
.npmignore | před 3 roky | |
docker-compose.yml | před 8 měsíci | |
pom.xml | před 7 měsíci | |
readme.md | před 1 rokem |
Samples are prepared to run on LocalStack - a local equivalent of AWS.
To start LocalStack locally:
$ docker-compose up
Samples use AWS CDK to create the infrastructure components to run the sample. To deploy infrastructure, you need to install CDK and CDK local:
$ npm install -g aws-cdk-local aws-cdk
Then, in infrastructure
directory:
$ mvn package
$ cdklocal bootstrap
$ cdklocal deploy
Samples are regular Spring Boot applications. The best way to run them is to run the main @SpringBootApplication
annotated class directly from an IDE.
Infrastructure is destroyed once LocalStack container shuts down. If you want to destroy infrastructure manually, run:
$ cdklocal destroy
To run samples against real AWS, update spring.cloud.aws
properties in sample's application.properties
to reflect your AWS configuration or delete these properties completely to use defaults.