I am using tornado with django. Right now, my django project structure is like this.
project
--apps
----accounts
----billing
----roles
--settings
----defaults.py
----development.py
----production.py
--__init__.py
--asgi.py
--wsgi.py
--urls.py
--celery.py
manage.py
README.md
LICENSE
requirements.txt
.gitignore
Where would I likely insert all of tornado related code?
Ideally, I would be having a module called tornado
somewhere with handlers and the application.
For development, I would be running tornado via a management command.