chlorine-clover

About Chlorine for Atom and Clover for VS Code: https://atom.io/packages/chlorine and https://marketplace.visualstudio.com/items?itemName=mauricioszabo.clover
2019-08-10T14:22:33.155600Z

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? 😊

mauricio.szabo 2019-08-10T14:35:31.157200Z

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

mauricio.szabo 2019-08-10T14:35:48.157500Z

What's the issue you're having?

2019-08-10T14:49:55.158300Z

Ah. That seems obvious now that you’ve said it. Thanks!