Metadata-Version: 2.1
Name: django-migration-dependencies
Version: 0.1.2
Summary: A Django app to visualise the migrations graph
Home-page: https://github.com/edg956/django-migration-dependencies
License: MIT
Author: Eugenio Doñaque
Author-email: eugenio@donaque.xyz
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Project-URL: Repository, https://github.com/edg956/django-migration-dependencies
Description-Content-Type: text/markdown

# Django Migration Dependency Graph
This is an app that helps developers understand how their migrations are interconnected across their apps, serving as a tool to identify possible circular dependencies when squashing them.

## Quick start

1. Add "migrations-graph" to your INSTALLED_APPS setting like this:


    INSTALLED_APPS = [
        ...
        'migrations-graph',
    ]


2. Include the polls URLconf in your project urls.py like this::


    path('migrations-graph/', include('migrations_graph.urls')),


3. Start the development server.

4. Visit http://127.0.0.1:8000/migrations_graph/ to see the graph.

