Skip to content

Commit

Permalink
Merge pull request #3 from unity-sds/ogc-processes-api-register
Browse files Browse the repository at this point in the history
OGC API Processes - Deploy and Undeploy Processes
  • Loading branch information
drewm-swe authored May 14, 2024
2 parents c0c9620 + cdf1e49 commit efd71c2
Show file tree
Hide file tree
Showing 121 changed files with 3,479 additions and 3,289 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ Ex. I'm frustrated when [...] happens as documented in issue-XYZ

**Describe the feature request**

> A clear and concise description of your request.
> A clear and concise description of your request.
Ex. I need or want [...]
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
- Links to relevant issues
- Example: issue-XYZ
## Testing
- Provide some proof you've tested your changes
- Provide some proof you've tested your changes
- Example: test results available at ...
- Example: tested on operating system ...
28 changes: 28 additions & 0 deletions .markdownlintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"default": true,
"MD029": {
"style": "ordered"
},
"MD033": false,
"MD013": false,
"MD002": false,
"MD026": false,
"MD041": false,
"MD005": false,
"MD007": false,
"MD034": false,
"MD024": false,
"MD045": false,
"MD012": false,
"MD031": false,
"MD032": false,
"MD036": false,
"MD055": false,
"MD056": false,
"MD022": false,
"MD042": false,
"MD004": false,
"MD025": false,
"MD001": false,
"MD051": false
}
8 changes: 0 additions & 8 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ docs/ConfClasses.md
docs/Crs.md
docs/Crs5.md
docs/DefaultApi.md
docs/Detail.md
docs/Exception.md
docs/Execute.md
docs/HTTPValidationError.md
Expand All @@ -17,7 +16,6 @@ docs/InputValueInput.md
docs/InputValueNoObjectInput.md
docs/InputValueNoObjectOutput.md
docs/InputValueOutput.md
docs/Instance.md
docs/JobControlOptions.md
docs/JobList.md
docs/LandingPage.md
Expand All @@ -29,11 +27,9 @@ docs/ProcessInput.md
docs/ProcessList.md
docs/ProcessOutput.md
docs/ProcessSummary.md
docs/Status.md
docs/StatusCode.md
docs/StatusInfo.md
docs/Subscriber.md
docs/Title.md
docs/ValidationError.md
docs/ValidationErrorLocInner.md
docs/Value.md
Expand All @@ -57,7 +53,6 @@ unity_sps_ogc_processes_api_python_client/models/bbox.py
unity_sps_ogc_processes_api_python_client/models/conf_classes.py
unity_sps_ogc_processes_api_python_client/models/crs.py
unity_sps_ogc_processes_api_python_client/models/crs5.py
unity_sps_ogc_processes_api_python_client/models/detail.py
unity_sps_ogc_processes_api_python_client/models/exception.py
unity_sps_ogc_processes_api_python_client/models/execute.py
unity_sps_ogc_processes_api_python_client/models/health_check.py
Expand All @@ -66,7 +61,6 @@ unity_sps_ogc_processes_api_python_client/models/input_value_input.py
unity_sps_ogc_processes_api_python_client/models/input_value_no_object_input.py
unity_sps_ogc_processes_api_python_client/models/input_value_no_object_output.py
unity_sps_ogc_processes_api_python_client/models/input_value_output.py
unity_sps_ogc_processes_api_python_client/models/instance.py
unity_sps_ogc_processes_api_python_client/models/job_control_options.py
unity_sps_ogc_processes_api_python_client/models/job_list.py
unity_sps_ogc_processes_api_python_client/models/landing_page.py
Expand All @@ -78,11 +72,9 @@ unity_sps_ogc_processes_api_python_client/models/process_input.py
unity_sps_ogc_processes_api_python_client/models/process_list.py
unity_sps_ogc_processes_api_python_client/models/process_output.py
unity_sps_ogc_processes_api_python_client/models/process_summary.py
unity_sps_ogc_processes_api_python_client/models/status.py
unity_sps_ogc_processes_api_python_client/models/status_code.py
unity_sps_ogc_processes_api_python_client/models/status_info.py
unity_sps_ogc_processes_api_python_client/models/subscriber.py
unity_sps_ogc_processes_api_python_client/models/title.py
unity_sps_ogc_processes_api_python_client/models/validation_error.py
unity_sps_ogc_processes_api_python_client/models/validation_error_loc_inner.py
unity_sps_ogc_processes_api_python_client/models/value.py
Expand Down
67 changes: 67 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
fail_fast: true
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-xml
- id: check-added-large-files
args:
- --maxkb=50000
- id: check-json # Checks json files for parsable syntax.
- id: pretty-format-json # Sets a standard for formatting json files.
args:
- --autofix
- id: requirements-txt-fixer # Sorts entries in requirements.txt.
- id: check-ast # Simply checks whether the files parse as valid python.
- id: detect-private-key # Detects the presence of private keys.
- id: detect-aws-credentials # Detects *your* aws credentials from the aws cli credentials file.
args:
- --allow-missing-credentials
- id: check-toml # Checks toml files for parsable syntax.

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: "v0.39.0"
hooks:
- id: markdownlint
args: ["--config", ".markdownlintrc", "--ignore", "CHANGELOG.md"]

- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black"]

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.1.1
hooks:
- id: black

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.1
hooks:
- id: ruff
args: [ --fix ]

- repo: https://github.com/PyCQA/bandit
rev: "1.7.7" # you must change this to newest version
hooks:
- id: bandit
args:
[
"--configfile=pyproject.toml",
"--severity-level=high",
"--confidence-level=high",
]
additional_dependencies: [".[toml]"]

- repo: https://github.com/hadolint/hadolint
rev: v2.12.1-beta
hooks:
- id: hadolint # requires hadolint is installed (brew install hadolint)
args:
- --no-color
- --failure-threshold=error
- --verbose
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [X.Y.Z] - 2022-MM-DD

### Added
### Added

-
-
-
-
Loading

0 comments on commit efd71c2

Please sign in to comment.