2023-10-29 02:04:11 +02:00
|
|
|
from livereload import Server, shell
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
server = Server()
|
|
|
|
server.watch('pbr-vision.adoc', shell('asciidoctor pbr-vision.adoc'))
|
2023-11-26 07:14:33 +01:00
|
|
|
server.watch('./architecture.adoc', shell('asciidoctor ./architecture.adoc'))
|
|
|
|
server.serve(default_filename='./architecture.html')
|