https://github.com/bleacherreport/example-wiremock
This is an example Elastic Beanstalk environment that allows you to create a sample mocked URL
https://github.com/bleacherreport/example-wiremock
Last synced: 5 months ago
JSON representation
This is an example Elastic Beanstalk environment that allows you to create a sample mocked URL
- Host: GitHub
- URL: https://github.com/bleacherreport/example-wiremock
- Owner: bleacherreport
- Created: 2016-11-23T06:00:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-05T21:58:47.000Z (over 9 years ago)
- Last Synced: 2025-03-29T07:22:55.406Z (about 1 year ago)
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# example-wiremock
This is an example Elastic Beanstalk environment that allows you to create a sample hello mocked URL.
### Install Elastic Beanstalk CLI and the AWS CLI
`pip install --upgrade --user awsebcli`
`pip install --upgrade awscli`
### Create Elastic Beanstalk Environment
`eb create example-wiremock`
### Get URL of your Elastic Beanstalk Environment
`aws elasticbeanstalk describe-environments --application-name example-wiremock --environment-names example-wiremock | jq '.Environments[0].CNAME'`
Or go to the AWS console : [https://console.aws.amazon.com/elasticbeanstalk/](https://console.aws.amazon.com/elasticbeanstalk/)
### See your app running!
### Notes :
* This will create an Elastic Beanstalk application/env in the us-east-1 region
* Feel free to modify the defaults under .elasticbeanstalk/config.yml or via the console
* sysctl is tuned in ebextensions, this allows for higher network throughput for internal services.
* [Wiremock](http://wiremock.org/) is very useful for creating mocking microservice dependencies in order to test your service in isolation, and it just so happens that Elastic Beanstalk is a quick and easy way to get it up and running!