├── .github └── workflows │ └── just_test.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ └── .keep ├── _templates │ └── .keep ├── api │ ├── exceptions.rst │ ├── http.rst │ ├── serializers.rst │ ├── tests.rst │ └── views.rst ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt └── usage │ ├── quickstart.rst │ ├── testing.rst │ └── tutorial.rst ├── justfile ├── pyproject.toml ├── src └── microapi │ ├── __init__.py │ ├── exceptions.py │ ├── http.py │ ├── serializers.py │ ├── tests.py │ └── views.py └── test ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── test_microapi ├── __init__.py ├── apps.py ├── migrations ├── 0001_initial.py ├── 0002_alter_blogpost_published_on_alter_blogpost_slug.py └── __init__.py ├── models.py ├── tests ├── __init__.py ├── test_serializers.py └── test_views.py ├── urls.py └── views.py /.github/workflows/just_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/.github/workflows/just_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/api/exceptions.rst -------------------------------------------------------------------------------- /docs/api/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/api/http.rst -------------------------------------------------------------------------------- /docs/api/serializers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/api/serializers.rst -------------------------------------------------------------------------------- /docs/api/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/api/tests.rst -------------------------------------------------------------------------------- /docs/api/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/api/views.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /docs/usage/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/usage/quickstart.rst -------------------------------------------------------------------------------- /docs/usage/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/usage/testing.rst -------------------------------------------------------------------------------- /docs/usage/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/docs/usage/tutorial.rst -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/microapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/src/microapi/__init__.py -------------------------------------------------------------------------------- /src/microapi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/src/microapi/exceptions.py -------------------------------------------------------------------------------- /src/microapi/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/src/microapi/http.py -------------------------------------------------------------------------------- /src/microapi/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/src/microapi/serializers.py -------------------------------------------------------------------------------- /src/microapi/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/src/microapi/tests.py -------------------------------------------------------------------------------- /src/microapi/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/src/microapi/views.py -------------------------------------------------------------------------------- /test/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/config/asgi.py -------------------------------------------------------------------------------- /test/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/config/settings.py -------------------------------------------------------------------------------- /test/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/config/urls.py -------------------------------------------------------------------------------- /test/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/config/wsgi.py -------------------------------------------------------------------------------- /test/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/manage.py -------------------------------------------------------------------------------- /test/test_microapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_microapi/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/apps.py -------------------------------------------------------------------------------- /test/test_microapi/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/migrations/0001_initial.py -------------------------------------------------------------------------------- /test/test_microapi/migrations/0002_alter_blogpost_published_on_alter_blogpost_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/migrations/0002_alter_blogpost_published_on_alter_blogpost_slug.py -------------------------------------------------------------------------------- /test/test_microapi/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_microapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/models.py -------------------------------------------------------------------------------- /test/test_microapi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_microapi/tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/tests/test_serializers.py -------------------------------------------------------------------------------- /test/test_microapi/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/tests/test_views.py -------------------------------------------------------------------------------- /test/test_microapi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/urls.py -------------------------------------------------------------------------------- /test/test_microapi/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/django-microapi/HEAD/test/test_microapi/views.py --------------------------------------------------------------------------------