Hi,
I installed DocBox with commandbox (also tried download directly from git repository) and using this to generate my docs.
`
baseDir = getDirectoryFromPath( getBaseTemplatePath() );
docbox = new docbox.DocBox(properties = {
projectTitle = “MEID DB”,
outputDir = “#ExpandPath(”/apidocs")#"
});
docbox.generate(
source = [
{ dir = expandPath( “/models”), mapping = “models” },
{ dir = expandPath( “/modules”), mapping = “modules” }
],
excludes = ‘tests|docbox|cb-bundle|ModuleConfig|whoops|handlers’
);
Api docs generated to /apidocs
!
`
This is a file that lives in the root of my application, then when I run it the docs are created and I see the documentation of the cfc’s is done correctly but the left menu looks very deep nested see image.
Am I doing something wrong?.
Please advice.
Angel Chrystian