Files
primal 94d2e725f5 Initial dashboard service scaffold
Infrastructure files for standalone dashboard service.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 12:39:13 -05:00

14 lines
330 B
Bash
Executable File

#!/bin/bash
cd "$(dirname "$0")"
# Use Unix timestamp for cache busting
TS=$(date +%s)
# Update CSS and JS cache-busting versions
sed -i '' "s/dashboard\\.css?v=[0-9]*/dashboard.css?v=${TS}/" templates.go
sed -i '' "s/dashboard\\.js?v=[0-9]*/dashboard.js?v=${TS}/" templates.go
echo "Cache bust: ${TS}"
~/apps/.launch.sh "$@"