less obfuscated mkdocs

This commit is contained in:
Conor Patrick 2018-12-06 22:38:48 -05:00
parent 1a07b4a73a
commit 827a7da443
2 changed files with 1 additions and 7 deletions

View File

@ -84,12 +84,6 @@ venv:
virtualenv venv virtualenv venv
./venv/bin/pip install wheel ./venv/bin/pip install wheel
venv/bin/mkdocs: venv
./venv/bin/pip install mkdocs mkdocs-material
.PHONY: docsrv
docsrv: venv/bin/mkdocs
./venv/bin/mkdocs serve
.PHONY: fido2-test .PHONY: fido2-test
fido2-test: fido2-test:

View File

@ -6,6 +6,6 @@ To host or develop locally:
pip install mkdocs mkdocs-material pip install mkdocs mkdocs-material
``` ```
`make docsrv` and visit [localhost:8000](http://localhost:8000). `mkdocs serve` and visit [localhost:8000](http://localhost:8000).
The file `runtime.txt` is necessary to tell Netlify to use Python3. The file `runtime.txt` is necessary to tell Netlify to use Python3.