I am building a large Django application, with a number of external contractors working on the project, in addition to the core team.
There are a number of tools/apps that we have built for the core of the application, and will be used across many of the future developments. We are using sphinx for documentation, and we have thorough documentation across the site - largely generated from the doc strings. The document source and compiled files are stored in the docs directory within the site.
I am looking to add some tutorials to help new developers get familiar with our tools quickly - something like the Django writing your first app tutorial.
I understand that there are multiple examples already in our code, but a well written tutorial seems to be very effective in getting new developers to adopt and build on our existing features much more quickly (we have already written the tutorials).
One further complication. Some of the applications are likely to be reused in other projects, and ideally their documentation would be easily portable into other projects.
My question
Where is the best place to locate the source of these tutorials.
I am of the general opinion, that keeping the documentation as close to the code makes it more likely to be read, and more importantly more likely to be updated. I am therefore thinking that having a tutorials directory within each app, and put rst files containing the tutorials in there.
The other option could be to use .py files within the same directory, so that you have a working demo as part of the tutorials.
Are there any conventions about where this sort of documentation should be stored?