Formatting, no toc

This commit is contained in:
2026-05-06 08:48:17 +03:00
parent 700bf0cc43
commit d97529a8e2
3 changed files with 8 additions and 6 deletions
+2 -1
View File
@@ -48,8 +48,9 @@
serve = pkgs.writeShellApplication {
name = "serve";
runtimeInputs = [ pkgs.python3 ];
runtimeInputs = [ pkgs.python3 pkgs.psmisc ];
text = ''
fuser -k 8080/tcp 2>/dev/null || true
echo "Serving site at http://localhost:8080"
python -m http.server --bind 0.0.0.0 8080 -d ${site}
'';