├── .dockerignore ├── .gitignore ├── Dockerfile ├── Jenkinsfile ├── README.md ├── app-controller.js ├── app-test.js ├── app.js ├── index.html ├── integration-testing-ec2.sh ├── oas.json ├── package.json └── zap_ignore_rules /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/README.md -------------------------------------------------------------------------------- /app-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/app-controller.js -------------------------------------------------------------------------------- /app-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/app-test.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/app.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/index.html -------------------------------------------------------------------------------- /integration-testing-ec2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/integration-testing-ec2.sh -------------------------------------------------------------------------------- /oas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/oas.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/package.json -------------------------------------------------------------------------------- /zap_ignore_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidd-harth/solar-system-gitea-jenkins-advanced/HEAD/zap_ignore_rules --------------------------------------------------------------------------------