Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 564 Bytes

README.md

File metadata and controls

33 lines (19 loc) · 564 Bytes

EOxServer type-api

A REST API for the type objects of the EOxServer coverages. This allows the modification of MaskTypes, BrowseTypes, CoverageTypes, ProductTypes, and CollectionTypes.

Usage

In order to activate the type-api configuration has to be added to some files in the Django project:

In settings.py:

INSTALLED_APPS = (
    ...

    'rest_framework',
)

In urls.py:

urlpatterns = [
    ...

    re_path(r'^api/', include("eoxs_type_api.urls")),
]

Now the API is mounted under the api/ endpoint.