Skip to content

Instantly share code, notes, and snippets.

@svetlyak40wt
Last active January 13, 2018 14:38
Show Gist options
  • Save svetlyak40wt/dc0f2667189d08a559f7ed3f94f4b38a to your computer and use it in GitHub Desktop.
Save svetlyak40wt/dc0f2667189d08a559f7ed3f94f4b38a to your computer and use it in GitHub Desktop.
Starting nExt browser
# install Roswell: https://github.com/roswell/roswell
# and Qlot: https://github.com/fukamachi/qlot
# they are "must have" tools if you are Common Lisp professional :)
git clone git@github.com:nEXT-Browser/nEXT.git
cd nEXT
echo 'ql :all :latest' > qlfile
qlot install
ros use ccl-bin
# Now start the repl
CL_SOURCE_REGISTRY=`pwd`//: qlot exec ros run
# next in cl repl
(ql:quickload :next/cocoa)
(next:start)
# Alternatively, you can start application in one command:
CL_SOURCE_REGISTRY=`pwd`//: \
qlot exec \
ros run \
--eval '(progn (ql:quickload :next/cocoa)
(funcall (intern "START" (find-package :next))))'
# There is key combination 'S-h s' to start SWANK server for slime, but it does not work for some reason for me.
# But you alsways can start SWANK from command line, like:
(swank:create-server :port 4006 :dont-close t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment