Skip to content
This repository was archived by the owner on Aug 26, 2020. It is now read-only.

mvochoa/graphqldoc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

(Moved) Documentation generator for GraphQL

Markdown generator for documenting GraphQL schema

Download binary in Releases or download docker image mvochoa/graphqldoc

Use

Generate dir doc/ with markdown files

$ graphqldoc http://localhost:8080/graphql

Compile

Is need go-bindata https://github.com/go-bindata/go-bindata

go get github.com/go-bindata/go-bindata/...
$ go-bindata -o assets.go template/
$ sed -i '' 's/package\ main/package\ graphqldoc/g' assets.go # Change package of assets.go file
$ cd cmd/
$ go install -v