Brijesh's Git Server — sse-from-child-process @ 6b7a97585facdecfbcf6f612b23e6d507f4fdb22

update server host
Brijesh Wawdhane ops@brijesh.dev
Sat, 15 Mar 2025 00:22:34 +0530
commit

6b7a97585facdecfbcf6f612b23e6d507f4fdb22

parent

b275cf2bdcf600622dcb0d6a37bbaf95c575a3e0

2 files changed, 4 insertions(+), 4 deletions(-)

jump to
M client/app/[taskId]/page.tsxclient/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.tsxclient/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()