quartet_manifest 1.0.5

Creator: codyrutscher

Last updated:

Add to Cart

Description:

quartet manifest 1.0.5

Reports back QU4RTET configuration and capabilities to quartet-ui.

Documentation

Dependencies
First, make sure you have Django and the Django Rest Framework installed and
you have an active project started. See the Django and Django Rest Framework
documentation below if you are unfamiliar with this process.


Modfiy settings.py
To use quartet_manifest in a project, first, add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'rest_framework',
'quartet_manifest',
...
)


Add the URL patterns
In your project’s urls.py, add quartet_manifest’s URL patterns:
from quartet_manifest import urls as quartet_manifest_urls


urlpatterns = [
...
path('manifest/', include('quartet_manifest.urls')),
...
]


Test the URL
Navigate to the configured host/port and url using the structure below:
http://[your host name]:[your port]/manifest/quartet-manifest/?format=json
You should get a return value as below

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.