A Drone CI tool to easilly deploy documentation on CodeDoc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Override-6 a8570e86e8
fancy markdown
2 years ago
generators bugfixses swagger 2 years ago
.drone.yml fixing drone 2 years ago
.gitignore changed doc destination path 2 years ago
Dockerfile fixing drone 2 years ago
README.md fancy markdown 2 years ago
entrypoint.sh bugfixses swagger 2 years ago

README.md

Docdeployer

Usage:

steps:
  - name: swagger-doc
    image: hub.codefirst.iut.uca.fr/maxime.batista/codefirst-docdeployer
    commands:
      - /entrypoint.sh <arguments>

entrypoint.sh

This command generates the documentation and deploys it on your CodeDoc space

arguments

  • -d --dir [dir] path to the documentation root - required
  • -t --type [docusaurus|doxygen|swagger] type of documentation generator to use. - required
  • -l --dest [dir] path to where to put the documentation outputs in your repository's CodeDoc space - optional !! cannot be absolute !!

usage examples :

/entrypoint.sh -d ./documentation/api -t swagger -l api_documentation
/entrypoint.sh -d ./documentation/app -t docusaurus -l application_documentation
/entrypoint.sh -d ./src -t doxygen -l sourcecode_documentation