Using apiDoc Problems with apidoc.json file

0

I need to document API's and I'm testing with apiDoc. I followed a step-by-step tutorial. however I get this kind of error in the cmd

apidoc.json ... create a configuration file apidoc.json which I already believe // Does anyone have any solution?

    
asked by Emilio Ampuero Sepúlveda 19.08.2018 в 06:35
source

1 answer

0

Try placing this:

{
 "name": "TestApp" 
}

Or this one:

{
  "name": "Nombre",
  "version": "0.1.0",
  "description": "Descripción",
  "title": "Titulo browser",
  "url" : "https://api.github.com/v1",
  "sampleUrl": "https://api.github.com/v1",
  "header": {
    "title": "Titulo header",
    "filename": "header.md"
  },
  "footer": {
    "title": "Titulo footer",
    "filename": "footer.md"
  },
  "template": {
    "withCompare": true,
    "withGenerator": true
  }
}

You comment if you continue with the same problem

    
answered by 20.08.2018 / 01:26
source