DjangoViz is a Django app that helps you visualize your models and their relationships using Atlas Cloud.
- Install the
djangoviz
package:
pip install djangoviz
- Add
djangoviz
to your Django project'sINSTALLED_APPS
insettings.py
:
INSTALLED_APPS = [
...,
'djangoviz',
...
]
- Generate the visualization by running the
djangoviz
management command:
python manage.py djangoviz
'Here is a public link to your schema visualization: https://gh.atlasgo.cloud/explore/13b2e709'
This command will create a visual representation of your projects database schema using Atlas Cloud. You can now easily view and explore the relationships between your models.
Note: Ensure that your Django project is properly configured and connected to a database before running the djangoviz
command.