How do you usually work with server side code and a REPL? Need the server running (I guess?) to test things... find a lot of old blogposts about it but nothing that seems very authoritative. Any pointers? 😊
What I do is that I start my server (webserver, connection do queue systems, etc) on the REPL. I also define some specific "development source path" so I can put things like "start the server", "stop the server", and other commands I don't want to go in the production build
What's the issue you're having?
Ah. That seems obvious now that you’ve said it. Thanks!