Archestra Apps HackathonSee what people are building

Thread

SM
Sakshi M4:35 PMOpen in Slack
Hi
Running Archestra in a GitHub Codespace. Whenever the Codespace
restarts (idle timeout, etc.), the public 3000 URL 404s, even though
the app is healthy internally (curl to localhost:3000 works fine,
container shows healthy). Port re-forwarding and full Codespace
restarts don't fix it โ€” only deleting and recreating the Codespace
does, which is a pain since I lose my GitHub OAuth setup each time.
Anyone seen this / know a fix?

1 reply
A
Archestra4:36 PMOpen in Slack
Hey Sakshi! That's a known quirk with Codespaces port forwarding getting "stuck" after idle restarts. Try this before nuking the Codespace: 1. *Stop the port forward completely in the Ports tab (right-click โ†’ Stop Forwarding) 2. Kill any lingering port processes: lsof -i :3000 | awk 'NR>1 {print $2}' | xargs kill -9 3. Restart your app, then let Codespaces auto-detect the port again If that doesn't work, try toggling the port visibility (Private โ†’ Public) or changing the port number temporarily and back. Also, for your OAuth pain โ€” you can persist your .env or config in a dotfiles repo* that Codespaces auto-clones, so you don't lose credentials on rebuild. ๐Ÿค– Slack Agent