Add pipenv instructions

This commit is contained in:
steve-chavez
2018-09-21 13:46:53 -05:00
parent 518b465ffa
commit 73e59a1643
5 changed files with 28 additions and 22 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/env python
from livereload import Server, shell
from subprocess import call
## Build docs at startup
call(['sphinx-build', '-b', 'html', '-a', '-n', '.', '_build'])
server = Server()
server.watch('*.rst', shell('sphinx-build -b html -a -n . _build'))
server.watch('tutorials/*.rst', shell('sphinx-build -b html -a -n . _build'))
server.serve(root='_build/')