mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 17:19:17 +02:00
See #170: fetching remote objects
This commit is contained in:
parent
65097f6297
commit
c2eeee5eb1
30 changed files with 1173 additions and 169 deletions
|
@ -1,13 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
from subprocess import call
|
||||
|
||||
# initial make
|
||||
call(["python", "-m", "sphinx", ".", "/tmp/_build"])
|
||||
from livereload import Server, shell
|
||||
|
||||
server = Server()
|
||||
server.watch('.', shell('python -m sphinx . /tmp/_build'))
|
||||
server.serve(
|
||||
root='/tmp/_build/',
|
||||
liveport=35730,
|
||||
port=8001,
|
||||
host='0.0.0.0')
|
||||
server.watch(".", shell("python -m sphinx . /tmp/_build"))
|
||||
server.serve(root="/tmp/_build/", liveport=35730, port=8001, host="0.0.0.0")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue