File size: 398 Bytes
0558c72 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env python
# run this from the Tutorial directoy (i.e. `python live.py`) to have a live reloading version of the docs.
# you may need to do `pip install livereload` first
from livereload import Server, shell
server = Server()
server.watch('index.rst', shell('make html', cwd='.'))
server.watch('_static/*.rst', shell('make html', cwd='.'))
server.serve(root='_build/html', port=1337)
|