Review and script fixes

This commit is contained in:
hackrush 2018-02-28 14:29:35 +05:30
parent 14c01b095b
commit 30bfb9ac88
37 changed files with 5792 additions and 2706 deletions

10
scripts/gen_docs.py Normal file
View file

@ -0,0 +1,10 @@
import gen_cli_docs
import gen_api_docs
import os.path as op
import subprocess
gen_cli_docs.main()
gen_api_docs.main()
cwd = op.dirname(op.realpath(__file__))
cwd = op.realpath(op.join(cwd, ".."))
proc = subprocess.Popen("mkdocs build", cwd=cwd, shell=True)