How do you deploy your #lisp apps. Somehow i like the idea of just loading my system in sbcl and let it run with the repl open.

@m3tti In SBCL, that's what I've done, with a shell script to start it or you can just call it from REPL. I have Ideas for using ECL.

In Chez Scheme supposedly I can make a universal binary and then just include the runtime blob, but in practice it's fiddly work on each platform, so right now Mac works great, others are tough.

Kawa Scheme was a little setup work and then I can just make a jar that works everywhere, I bet ABCL is similar.
#lisp #scheme #ecl

@mdhughes i like the idea but i see also security concerns. But with that aproach lile just loading the system and let the repl open you can debug and also call functions as you like. For example i have an import function which i can just trigger from the repl instead implementing some ui or cli