0

I want to dump my data from the model of my app in Django.

So I tried the following python manage.py dumpdata app > temp_data.json (from this answer)

where "app" is an app I created via python manage.py startapp app

It throws me the following error :

Error: Unknown application: asset

Can someone help me to figure out what's going on ?

Community
  • 1
  • 1
Johanna
  • 1,343
  • 4
  • 25
  • 44

1 Answers1

3

Is the app listed in your settings.py in INSTALLED_APPS?

Gabriel Ross
  • 5,168
  • 1
  • 28
  • 30