django_schema
Django Schema is a simple Django app to generate schema of Models .
Installation
$ pipenv install django_schema
Detailed documentation is in the “docs” directory.
- Add “schema” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'django_schema',
]
- Add list of local apps to SCHEMA_APPS setting like this
SCHEMA_APPS = [
'blog',
'users',
'product',
]
- Include the schema URLconf in your project urls.py like this:
from django.urls import include
urlpatterns = [
...
path('schema/', include('django_schema.urls'))
]
- Visit http://127.0.0.1:8000/schema/ to check all the schema styles
- For testing
MODEL_SCHEMA_TEST = {
'app_name':'blog',
'model':'post'
}
- Permission
- Handling App versioning for ex ‘apps/v1/blog’, ‘apps/v1/users’
- Add Serializers For all the Django Model Field INTERNAL_TYPES
- Handle more html elements types
- Add docs
- Add Testing