One can easily start Django using management command like this:
management.call_command('runserver', interactive=False)
But it actually blocks execution. Any workaround apart from subprocess/threading/multiprocessing.
I mean how to do it in more native fashion?