mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
9 lines
193 B
Python
9 lines
193 B
Python
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
from livereload import Server, shell
|
|
|
|
server = Server()
|
|
server.watch('*.rst', shell('make html'))
|
|
server.serve(root='_build/html')
|