Installation#

Django Synced Seeds can be installed using either uv (recommended) or pip.

Using pip#

pip install django-synced-seeders

Django Settings#

Add seeders to your INSTALLED_APPS:

1
2
3
4
5
# settings.py
INSTALLED_APPS = [
    # ... your other apps
    'seeders',
]

Run Migrations#

python manage.py migrate

Verify Installation#

Verify the installation by running:

python manage.py help | grep seed

You should see the seeder management commands listed.

Next Steps#

  • Usage - Learn basic commands