File: serve.py

package info (click to toggle)
joserfc 1.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,480 kB
  • sloc: python: 8,096; makefile: 18
file content (8 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
from livereload import Server, shell

app = Server()
# app.watch("src", shell("make build-docs"), delay=2)
app.watch("docs/*.rst", shell("make dev-docs"), delay=2)
app.watch("docs/*/*.rst", shell("make dev-docs"), delay=2)
app.watch("docs/locales/zh/LC_MESSAGES/*.po", shell("make dev-docs -e lang=zh"), delay=2)
app.serve(root="public")