<!DOCTYPE html><html><head><title>Starting WikiJS...</title><style>body{font-family:system-ui;display:flex;justify-content:center;align-items:center;min-height:100vh;margin:0;background:#1a1a2e;color:#e0e0e0}.box{text-align:center;padding:2rem;border-radius:12px;background:#16213e;box-shadow:0 4px 20px rgba(0,0,0,.3)}.spinner{width:40px;height:40px;border:4px solid #333;border-top:4px solid #4cc9f0;border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 1rem}@keyframes spin{to{transform:rotate(360deg)}}</style></head><body><div class="box"><div class="spinner"></div><h2>Starting WikiJS</h2><p id="status">Waking up the service...</p></div><script>fetch("/__wake/start/wikijs").catch(()=>{});function check(){fetch("/__wake/health/wikijs").then(r=>r.json()).then(d=>{if(d.running){document.getElementById("status").textContent="Container running, waiting for app...";setTimeout(()=>location.reload(),5000)}else setTimeout(check,3000)}).catch(()=>setTimeout(check,3000))}setTimeout(check,2000)</script></body></html>