update server host
Brijesh Wawdhane ops@brijesh.dev
Sat, 15 Mar 2025 00:22:34 +0530
2 files changed,
4 insertions(+),
4 deletions(-)
M
client/app/[taskId]/page.tsx
→
client/app/[taskId]/page.tsx
@@ -13,7 +13,7 @@ // // Clear updates on mount
// setUpdates([]) // // Start listening for updates -// const eventSource = new EventSource(`http://localhost:4000/api/task-updates/${taskId}`) +// const eventSource = new EventSource(`https://localhost:4000/api/task-updates/${taskId}`) // eventSource.onmessage = (event) => { // const update = JSON.parse(event.data)@@ -65,7 +65,7 @@ useEffect(() => {
// Clear updates only when taskId changes, not on every mount setUpdates([]) - const eventSource = new EventSource(`http://localhost:4000/api/task-updates/${taskId}`) + const eventSource = new EventSource(`https://sse.brijesh.dev/api/task-updates/${taskId}`) eventSource.onmessage = (event) => { const update = JSON.parse(event.data)@@ -104,4 +104,4 @@ ))}
</div> </div> ) -}+}
M
client/app/page.tsx
→
client/app/page.tsx
@@ -10,7 +10,7 @@
const startTask = async () => { try { setLoading(true) - const response = await fetch('http://localhost:4000/api/start-task', { + const response = await fetch('https://sse.brijesh.dev/api/start-task', { method: 'POST' }) const data = await response.json()