Codebase list python-livereload / lintian-fixes/main server.py
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

server.py @lintian-fixes/mainraw · history · blame

1
2
3
4
5
6
7
# coding: utf-8

from livereload import Server, shell

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