├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── validate-tests-suite.yml ├── .gitignore ├── .vscode └── extensions.json ├── .yamllint ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── demo.mp4 ├── demo.png ├── project.code-workspace ├── requirements.txt ├── test_suite_mock.py └── tests_suite.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/validate-tests-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/.github/workflows/validate-tests-suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.tmp 2 | __pycache__/ -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/.yamllint -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Simply submit a PR :hugs: 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/demo.mp4 -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/demo.png -------------------------------------------------------------------------------- /project.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/project.code-workspace -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | requests 3 | Gunicorn 4 | -------------------------------------------------------------------------------- /test_suite_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/test_suite_mock.py -------------------------------------------------------------------------------- /tests_suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oshp/oshp-validator/HEAD/tests_suite.yml --------------------------------------------------------------------------------