-
-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to connect to a remote running Lisp #115
Labels
Comments
More resources: https://lisp-journey.gitlab.io/web-dev/#deployment with cvberry's post and Quickutil's example. |
That's a good idea. I am currently using a docker setup to connect to a remote lisp (resp. dockerized lisp) Maybe it would be useful to describe this setup? (it's not perfect though, I could not get filename translation working.) |
Sure!
Can you present as "A Recipe for connecting to a remote lisp"? Love to take
that PR.
…On Wed, Jun 13, 2018 at 11:08 PM, Michael Grünewald < ***@***.***> wrote:
That's a good idea. I am currently using a docker setup to connect to a
remote lisp (resp. dockerized lisp) Maybe it would be useful to describe
this setup?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#115 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAuc4Gwv7vf6uxj4jXNIDQuW0WP-0XQ1ks5t8f3vgaJpZM4Ppg8j>
.
--
Regards,
Paul
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Asked again in https://stackoverflow.com/questions/46499463/hot-debug-and-swap-in-common-lisp/46501704 I agree there should be a tutorial somewhere and it's a good fit for the cookbook.
Some notes I took for myself. I largely agree we should have a tutorial out there. In the CL Cookbook ?
Reading http://readevalprint.tumblr.com/post/101841449553/its-alive-the-path-from-library-to-web-app :
Connect to a remote Slime server:
(ql:quickload :swank)
(swank:create-server)
. The default port is 4005. [On your local machine] Create a SSH tunnel with ssh -L4005:127.0.0.1:4005 [remote machine]M-x slime-connect
.from an old SO doc entry: https://stackoverflow.com/documentation/common-lisp/4097/working-with-slime/25252/setting-up-a-swank-server-over-a-ssh-tunnel
The text was updated successfully, but these errors were encountered: