summaryrefslogtreecommitdiff
path: root/public/templates/live_preview.py
blob: e753fc60459e085e899cf5243a01648b0ce17175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from livereload import Server

server = Server()
# Watch HTML file
server.watch('index.html')
# Watch CSS files
server.watch('static/styles.css')
# Watch JavaScript files
server.watch('static/main.mjs')
# Watch other files if needed
server.watch('page/*')  # Watch everything in the page folder

# Serve the current directory
server.serve(root='.')