├── .github ├── cdk │ ├── .gitignore │ ├── cdkactions.yaml │ ├── main.ts │ ├── package.json │ ├── tsconfig.json │ └── yarn.lock └── workflows │ ├── cdkactions_build-and-publish.yaml │ └── cdkactions_validate.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── api.md ├── index.md ├── installation.md ├── mixin.md ├── router.md ├── signals.md ├── testing.md └── usage.md ├── manage.py ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── rest_live ├── __init__.py ├── apps.py ├── consumers.py ├── mixins.py ├── routers.py ├── signals.py └── testing.py ├── test_app ├── __init__.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py └── views.py ├── tests ├── settings.py ├── test_live.py └── utils.py ├── tox.ini └── version.sh /.github/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.github/cdk/.gitignore -------------------------------------------------------------------------------- /.github/cdk/cdkactions.yaml: -------------------------------------------------------------------------------- 1 | language: typescript 2 | app: node main.js 3 | -------------------------------------------------------------------------------- /.github/cdk/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.github/cdk/main.ts -------------------------------------------------------------------------------- /.github/cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.github/cdk/package.json -------------------------------------------------------------------------------- /.github/cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.github/cdk/tsconfig.json -------------------------------------------------------------------------------- /.github/cdk/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.github/cdk/yarn.lock -------------------------------------------------------------------------------- /.github/workflows/cdkactions_build-and-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.github/workflows/cdkactions_build-and-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/cdkactions_validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.github/workflows/cdkactions_validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/mixin.md -------------------------------------------------------------------------------- /docs/router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/router.md -------------------------------------------------------------------------------- /docs/signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/signals.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/docs/usage.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/manage.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rest_live/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/rest_live/__init__.py -------------------------------------------------------------------------------- /rest_live/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/rest_live/apps.py -------------------------------------------------------------------------------- /rest_live/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/rest_live/consumers.py -------------------------------------------------------------------------------- /rest_live/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/rest_live/mixins.py -------------------------------------------------------------------------------- /rest_live/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/rest_live/routers.py -------------------------------------------------------------------------------- /rest_live/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/rest_live/signals.py -------------------------------------------------------------------------------- /rest_live/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/rest_live/testing.py -------------------------------------------------------------------------------- /test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/test_app/apps.py -------------------------------------------------------------------------------- /test_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/test_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/test_app/models.py -------------------------------------------------------------------------------- /test_app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/test_app/serializers.py -------------------------------------------------------------------------------- /test_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/test_app/views.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/tests/test_live.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/tox.ini -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pennlabs/django-rest-live/HEAD/version.sh --------------------------------------------------------------------------------