[Answer]-Django command does it require django server must be running?

1👍

No, the django server is a separate process completly independent from your custom command.

If you are using virtualenv (if you aren’t yo probably should) keep in mind you must source the virtualenv or use the python interpreter within it in order to get the managemente command properly run.

👤esauro

Leave a comment