├── .DS_Store ├── .gitignore ├── .jshintrc ├── LICENSE.md ├── README.md ├── app.js ├── appspec.yml ├── bin ├── cfn-create-app.sh ├── cfn-wait-for-stack.sh ├── configure-jenkins-2.sh ├── configure-jenkins.sh ├── eni-attach-to-app.sh ├── eni-detach.sh └── packer-create-ami.sh ├── cookbooks └── dromedary │ ├── .kitchen.yml │ ├── Berksfile │ ├── Berksfile.lock │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Vagrantfile │ ├── attributes-noprereqs.json │ ├── attributes.json │ ├── chefignore │ ├── files │ └── default │ │ └── nginx │ │ ├── dromedary-site.cfg │ │ ├── generate-cert.sh │ │ └── ssl-dromedary-site.cfg │ ├── metadata.rb │ ├── packer.json │ ├── recipes │ ├── code_deploy.rb │ ├── default.rb │ ├── install_dromedary.rb │ ├── nginx_config.rb │ ├── nodejs.rb │ ├── prereqs.rb │ ├── ssl_nginx_config.rb │ └── yum_packages.rb │ └── test │ └── integration │ └── default │ ├── bats │ └── nginx.bats │ └── serverspec │ ├── codedeploy_spec.rb │ ├── dromedary_spec.rb │ ├── nginx_spec.rb │ ├── nodejs_spec.rb │ └── ruby_spec.rb ├── deploy └── scripts │ ├── afterInstall.sh │ ├── applicationStart.sh │ ├── applicationStop.sh │ ├── beforeInstall.sh │ └── validateService.sh ├── dev-lib └── .gitkeep ├── gulpfile.js ├── index.js ├── lib ├── dynamoDbPersist.js ├── inMemoryStorage.js ├── requestThrottle.js └── sha.js ├── package.json ├── pipeline ├── .DS_Store ├── cfn │ ├── app-eni.json │ ├── app-instance.json │ ├── codepipeline-cfn.json │ ├── codepipeline-custom-actions.json │ ├── dromedary-master.json │ ├── dynamodb.json │ ├── iam.json │ ├── jenkins-instance.json │ ├── params-example-lambda.json │ ├── params-example.json │ ├── pipeline-store.json │ └── vpc.json └── jobs │ ├── dsl │ ├── codepipeline.groovy │ ├── dummypipeline.groovy │ ├── dummyselfservice.groovy │ └── views.groovy │ ├── scripts │ ├── drom-acceptance-test.sh │ ├── drom-build.sh │ ├── drom-create-env.sh │ ├── drom-infra-test.sh │ ├── drom-promote-env.sh │ ├── drom-staticcode-anal.sh │ └── drom-unit-test.sh │ └── xml │ ├── drom-acceptance-test │ └── config.xml │ ├── drom-build │ └── config.xml │ ├── drom-create-env │ └── config.xml │ ├── drom-infra-test │ └── config.xml │ ├── drom-promote-env │ └── config.xml │ ├── drom-staticcode-anal │ └── config.xml │ ├── drom-unit-test │ └── config.xml │ └── job-seed │ └── config.xml ├── public ├── charthandler.js ├── index.html ├── stelogo.png └── style.css ├── swagger.json ├── test-functional ├── endpoint-config.js ├── endpoint-data.js ├── endpoint-increment.js └── endpoint-index.js ├── test-infra ├── bootstrap │ └── features │ │ ├── bootstrap-teardown.feature │ │ ├── bootstrap.feature │ │ └── step_definitions │ │ └── bootstrap.rb └── spec │ ├── security_group_spec.rb │ └── spec_helper.rb └── test ├── inMemoryStorage.js └── requestThrottle.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/app.js -------------------------------------------------------------------------------- /appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/appspec.yml -------------------------------------------------------------------------------- /bin/cfn-create-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/bin/cfn-create-app.sh -------------------------------------------------------------------------------- /bin/cfn-wait-for-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/bin/cfn-wait-for-stack.sh -------------------------------------------------------------------------------- /bin/configure-jenkins-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/bin/configure-jenkins-2.sh -------------------------------------------------------------------------------- /bin/configure-jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/bin/configure-jenkins.sh -------------------------------------------------------------------------------- /bin/eni-attach-to-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/bin/eni-attach-to-app.sh -------------------------------------------------------------------------------- /bin/eni-detach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/bin/eni-detach.sh -------------------------------------------------------------------------------- /bin/packer-create-ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/bin/packer-create-ami.sh -------------------------------------------------------------------------------- /cookbooks/dromedary/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/dromedary/Berksfile: -------------------------------------------------------------------------------- 1 | 2 | source "https://supermarket.chef.io" 3 | 4 | metadata 5 | -------------------------------------------------------------------------------- /cookbooks/dromedary/Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/Berksfile.lock -------------------------------------------------------------------------------- /cookbooks/dromedary/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0 2 | 3 | Initial release of dromedary 4 | -------------------------------------------------------------------------------- /cookbooks/dromedary/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/Gemfile -------------------------------------------------------------------------------- /cookbooks/dromedary/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/Gemfile.lock -------------------------------------------------------------------------------- /cookbooks/dromedary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/README.md -------------------------------------------------------------------------------- /cookbooks/dromedary/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/Vagrantfile -------------------------------------------------------------------------------- /cookbooks/dromedary/attributes-noprereqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/attributes-noprereqs.json -------------------------------------------------------------------------------- /cookbooks/dromedary/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/attributes.json -------------------------------------------------------------------------------- /cookbooks/dromedary/chefignore: -------------------------------------------------------------------------------- 1 | .kitchen 2 | -------------------------------------------------------------------------------- /cookbooks/dromedary/files/default/nginx/dromedary-site.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/files/default/nginx/dromedary-site.cfg -------------------------------------------------------------------------------- /cookbooks/dromedary/files/default/nginx/generate-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/files/default/nginx/generate-cert.sh -------------------------------------------------------------------------------- /cookbooks/dromedary/files/default/nginx/ssl-dromedary-site.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/files/default/nginx/ssl-dromedary-site.cfg -------------------------------------------------------------------------------- /cookbooks/dromedary/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/metadata.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/packer.json -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/code_deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/code_deploy.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/install_dromedary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/install_dromedary.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/nginx_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/nginx_config.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/nodejs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/nodejs.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/prereqs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/prereqs.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/ssl_nginx_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/ssl_nginx_config.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/recipes/yum_packages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/recipes/yum_packages.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/test/integration/default/bats/nginx.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/test/integration/default/bats/nginx.bats -------------------------------------------------------------------------------- /cookbooks/dromedary/test/integration/default/serverspec/codedeploy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/test/integration/default/serverspec/codedeploy_spec.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/test/integration/default/serverspec/dromedary_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/test/integration/default/serverspec/dromedary_spec.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/test/integration/default/serverspec/nginx_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/test/integration/default/serverspec/nginx_spec.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/test/integration/default/serverspec/nodejs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/test/integration/default/serverspec/nodejs_spec.rb -------------------------------------------------------------------------------- /cookbooks/dromedary/test/integration/default/serverspec/ruby_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/cookbooks/dromedary/test/integration/default/serverspec/ruby_spec.rb -------------------------------------------------------------------------------- /deploy/scripts/afterInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/deploy/scripts/afterInstall.sh -------------------------------------------------------------------------------- /deploy/scripts/applicationStart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/deploy/scripts/applicationStart.sh -------------------------------------------------------------------------------- /deploy/scripts/applicationStop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/deploy/scripts/applicationStop.sh -------------------------------------------------------------------------------- /deploy/scripts/beforeInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/deploy/scripts/beforeInstall.sh -------------------------------------------------------------------------------- /deploy/scripts/validateService.sh: -------------------------------------------------------------------------------- 1 | wget localhost:80 2 | -------------------------------------------------------------------------------- /dev-lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/index.js -------------------------------------------------------------------------------- /lib/dynamoDbPersist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/lib/dynamoDbPersist.js -------------------------------------------------------------------------------- /lib/inMemoryStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/lib/inMemoryStorage.js -------------------------------------------------------------------------------- /lib/requestThrottle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/lib/requestThrottle.js -------------------------------------------------------------------------------- /lib/sha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/lib/sha.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/package.json -------------------------------------------------------------------------------- /pipeline/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/.DS_Store -------------------------------------------------------------------------------- /pipeline/cfn/app-eni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/app-eni.json -------------------------------------------------------------------------------- /pipeline/cfn/app-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/app-instance.json -------------------------------------------------------------------------------- /pipeline/cfn/codepipeline-cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/codepipeline-cfn.json -------------------------------------------------------------------------------- /pipeline/cfn/codepipeline-custom-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/codepipeline-custom-actions.json -------------------------------------------------------------------------------- /pipeline/cfn/dromedary-master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/dromedary-master.json -------------------------------------------------------------------------------- /pipeline/cfn/dynamodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/dynamodb.json -------------------------------------------------------------------------------- /pipeline/cfn/iam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/iam.json -------------------------------------------------------------------------------- /pipeline/cfn/jenkins-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/jenkins-instance.json -------------------------------------------------------------------------------- /pipeline/cfn/params-example-lambda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/params-example-lambda.json -------------------------------------------------------------------------------- /pipeline/cfn/params-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/params-example.json -------------------------------------------------------------------------------- /pipeline/cfn/pipeline-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/pipeline-store.json -------------------------------------------------------------------------------- /pipeline/cfn/vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/cfn/vpc.json -------------------------------------------------------------------------------- /pipeline/jobs/dsl/codepipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/dsl/codepipeline.groovy -------------------------------------------------------------------------------- /pipeline/jobs/dsl/dummypipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/dsl/dummypipeline.groovy -------------------------------------------------------------------------------- /pipeline/jobs/dsl/dummyselfservice.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/dsl/dummyselfservice.groovy -------------------------------------------------------------------------------- /pipeline/jobs/dsl/views.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/dsl/views.groovy -------------------------------------------------------------------------------- /pipeline/jobs/scripts/drom-acceptance-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/scripts/drom-acceptance-test.sh -------------------------------------------------------------------------------- /pipeline/jobs/scripts/drom-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/scripts/drom-build.sh -------------------------------------------------------------------------------- /pipeline/jobs/scripts/drom-create-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/scripts/drom-create-env.sh -------------------------------------------------------------------------------- /pipeline/jobs/scripts/drom-infra-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/scripts/drom-infra-test.sh -------------------------------------------------------------------------------- /pipeline/jobs/scripts/drom-promote-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/scripts/drom-promote-env.sh -------------------------------------------------------------------------------- /pipeline/jobs/scripts/drom-staticcode-anal.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | . /etc/profile 3 | set -ex 4 | 5 | npm install 6 | gulp lint 7 | -------------------------------------------------------------------------------- /pipeline/jobs/scripts/drom-unit-test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | . /etc/profile 3 | set -ex 4 | 5 | npm install 6 | gulp test 7 | -------------------------------------------------------------------------------- /pipeline/jobs/xml/drom-acceptance-test/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/drom-acceptance-test/config.xml -------------------------------------------------------------------------------- /pipeline/jobs/xml/drom-build/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/drom-build/config.xml -------------------------------------------------------------------------------- /pipeline/jobs/xml/drom-create-env/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/drom-create-env/config.xml -------------------------------------------------------------------------------- /pipeline/jobs/xml/drom-infra-test/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/drom-infra-test/config.xml -------------------------------------------------------------------------------- /pipeline/jobs/xml/drom-promote-env/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/drom-promote-env/config.xml -------------------------------------------------------------------------------- /pipeline/jobs/xml/drom-staticcode-anal/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/drom-staticcode-anal/config.xml -------------------------------------------------------------------------------- /pipeline/jobs/xml/drom-unit-test/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/drom-unit-test/config.xml -------------------------------------------------------------------------------- /pipeline/jobs/xml/job-seed/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/pipeline/jobs/xml/job-seed/config.xml -------------------------------------------------------------------------------- /public/charthandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/public/charthandler.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/public/index.html -------------------------------------------------------------------------------- /public/stelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/public/stelogo.png -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/public/style.css -------------------------------------------------------------------------------- /swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/swagger.json -------------------------------------------------------------------------------- /test-functional/endpoint-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-functional/endpoint-config.js -------------------------------------------------------------------------------- /test-functional/endpoint-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-functional/endpoint-data.js -------------------------------------------------------------------------------- /test-functional/endpoint-increment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-functional/endpoint-increment.js -------------------------------------------------------------------------------- /test-functional/endpoint-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-functional/endpoint-index.js -------------------------------------------------------------------------------- /test-infra/bootstrap/features/bootstrap-teardown.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-infra/bootstrap/features/bootstrap-teardown.feature -------------------------------------------------------------------------------- /test-infra/bootstrap/features/bootstrap.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-infra/bootstrap/features/bootstrap.feature -------------------------------------------------------------------------------- /test-infra/bootstrap/features/step_definitions/bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-infra/bootstrap/features/step_definitions/bootstrap.rb -------------------------------------------------------------------------------- /test-infra/spec/security_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-infra/spec/security_group_spec.rb -------------------------------------------------------------------------------- /test-infra/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test-infra/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/inMemoryStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test/inMemoryStorage.js -------------------------------------------------------------------------------- /test/requestThrottle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelligent/dromedary/HEAD/test/requestThrottle.js --------------------------------------------------------------------------------