Add Hugo restart script and static files

Add an executable bin/emy_restart_hugo.sh to kill any process on port 1313 and start a Hugo server bound to 192.168.0.40 (with --disableFastRender and --noHTTPCache). Also add static assets and metadata: .DS_Store files, an empty placeholder file `0`, and a new content file static/emy_banana/CLAUDE.md.
This commit is contained in:
bonzei 2026-04-12 01:33:17 +02:00
parent 9899b947a8
commit ad8e5a5b8e
6 changed files with 8 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

0
0 Normal file
View file

8
bin/emy_restart_hugo.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
cd /Users/jessi/karatehp;
lsof -ti:1313 | xargs kill -9
hugo server --bind=192.168.0.40 --baseURL=http://192.168.0.40 --disableFastRender --noHTTPCache
[ $? -eq 0 ] && echo "server hugo emy neu gestartet" || echo "fehler beim starten von emy server"

BIN
static/.DS_Store vendored Normal file

Binary file not shown.

BIN
static/emy_banana/.DS_Store vendored Normal file

Binary file not shown.

View file