File: server.py

package info (click to toggle)
python-livereload 2.7.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: javascript: 1,041; python: 823; makefile: 169
file content (5 lines) | stat: -rw-r--r-- 141 bytes parent folder | download
1
2
3
4
5
from livereload import Server, shell

server = Server()
server.watch('docs/*.rst', shell('make html'))
server.serve(root='docs/_build/html')