diff options
author | Joshua Powers <josh.powers@canonical.com> | 2019-09-07 02:27:45 +0000 |
---|---|---|
committer | Server Team CI Bot <josh.powers+server-team-bot@canonical.com> | 2019-09-07 02:27:45 +0000 |
commit | 385232dc8da6532b54342cd11e6d822ff7cd3e5a (patch) | |
tree | ef0f51ecd8a348407cbea7662a3e55bc105e890d /Makefile | |
parent | c7688981e1070c75f3c3f31e707e7be272dd43d6 (diff) | |
download | vyos-cloud-init-385232dc8da6532b54342cd11e6d822ff7cd3e5a.tar.gz vyos-cloud-init-385232dc8da6532b54342cd11e6d822ff7cd3e5a.zip |
doc: document doc, create makefile and tox target
* Create makefile and tox targets for documentation building and testing
to better replicate the live web docs using the same theme.
* Created docs.rst to explain how to build and contribute to documentation
with style guide and tips.
* doc/rtd/conf.py:
* Add copyright to rtd config
* Use Sphinx's RTD theme to replicate actual docs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -106,7 +106,9 @@ deb-src: echo sudo apt-get install devscripts; exit 1; } $(PYVER) ./packages/bddeb -S -d +doc: + tox -e doc .PHONY: test pyflakes pyflakes3 clean pep8 rpm srpm deb deb-src yaml .PHONY: check_version pip-test-requirements pip-requirements clean_pyc -.PHONY: unittest unittest3 style-check +.PHONY: unittest unittest3 style-check doc |