"wasp start db" takes too much time.
Any solution for this? i seem to be stuck in a loop and i can't do "Wasp start" until this resolves....

5432 is used by other apps, but sometimes it doesn't do it reliably. docker -v)docker info)5432? (For Linux, I found these instructions: https://www.cyberciti.biz/faq/unix-linux-check-if-port-is-in-use-command/)i did check the first two steps.What did the two steps output? If you could share what did you see, it might help others in the future.
But still didn't work.


<ip>:3000 on your phone.
PS C:\Users\krish> node -e "require('http').createServer((req, res) => { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello, World!\n'); }).listen(3000, '0.0.0.0', () => console.log('Server running at http://0.0.0.0:3000/'));"
Server running at http://0.0.0.0:3000/

python -m http.server <port_number> 
docker -v<ip>:3000PS C:\Users\krish> node -e "require('http').createServer((req, res) => { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello, World!\n'); }).listen(3000, '0.0.0.0', () => console.log('Server running at http://0.0.0.0:3000/'));"
Server running at http://0.0.0.0:3000/python -m http.server <port_number>node -e 'require("http").createServer((req, res) => { res.writeHead(200, {"Content-Type": "text/plain"}); res.end("Hello, World!\n"); }).listen(3000, "0.0.0.0", () => console.log("Server running at http://0.0.0.0:3000/"));'