VI.7 Deployment View
docToolchain is only used to generate documentation and is, therefore, not deployed to a production environment. However, depending on your requirements, you might want to deploy it not only to your development machine but also to a build server.
The general deployment is done by cloning the docToolchain source repository. Depending on your needs, the details will vary.
7.1 Option 1: Installed the Command-Line Tool
For this option, you clone the docToolchain repository to a location outside of the project you want to write the documentation for. You then add the <docToolchain home>/bin folder to your PATH variable. Now you can use docToolchain as a command-line tool:
doctoolchain <docDir> <task>
This approach works quite well and is independent of your project. However, it violates RQ6 (clone, build, test, and run) for your project. Someone who clones your project will also have to install docToolchain before they can work on the documentation. Also, making...