AlecGrover / django-rest-hydra

Hydra port of django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-rest-hydra

https://travis-ci.org/invinciblycool/django-rest-hydra.svg?branch=master

Django Port of Hydrus

Documentation

The full documentation is at https://django-rest-hydra.readthedocs.io.

Quickstart

Install django-rest-hydra:

pip install django-rest-hydra

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_rest_hydra.apps.DjangoRestHydraConfig',
    ...
)

Add django-rest-hydra's URL patterns:

from django_rest_hydra import urls as django_rest_hydra_urls


urlpatterns = [
    ...
    url(r'^', include(django_rest_hydra_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

Hydra port of django


Languages

Language:Python 74.7%Language:HTML 17.5%Language:Makefile 7.8%