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