This commit is contained in:
Oliver
2025-07-26 14:01:49 -03:00
parent eb7da59c64
commit a34ccc7aa2
2 changed files with 14 additions and 0 deletions

6
serve Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
cd public
pip install livereload
python ../serve.py
cd ..

8
serve.py Normal file
View File

@@ -0,0 +1,8 @@
from livereload import Server
server = Server()
server.watch('*.html')
server.watch('*.css')
server.watch('*.js')
server.serve(root='.', port=8000)