├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── locustfile.py ├── push.sh └── runLocust.sh /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/README.md -------------------------------------------------------------------------------- /locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/locustfile.py -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/push.sh -------------------------------------------------------------------------------- /runLocust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microservices-demo/load-test/HEAD/runLocust.sh --------------------------------------------------------------------------------