Skip to content
Snippets Groups Projects
serve.py 312 B
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env python
    from subprocess import call
    
    # initial make
    call(["python", "-m", "sphinx", ".", "/tmp/_build"])
    from livereload import Server, shell
    
    server = Server()
    
    Agate's avatar
    Agate committed
    server.watch("..", shell("python -m sphinx . /tmp/_build"))
    
    server.serve(root="/tmp/_build/", liveport=35730, port=8001, host="0.0.0.0")