Heroku. Django dumpdata -


how can data on heroku , create fixture can load locally? heroku run python manage.py dumpdata --natural > data.json command, how can download file?

try adding dashes indicate end of command:

heroku run python manage.py dumpdata --natural -- > data.json 

this should redirect output local file.


Comments

Popular posts from this blog

php - Auto increment employee ID -

php - isset function not working properly -

python - Evaluating the next line in a For Loop while in the current iteration -