Last active
January 13, 2018 14:38
-
-
Save svetlyak40wt/dc0f2667189d08a559f7ed3f94f4b38a to your computer and use it in GitHub Desktop.
Starting nExt browser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 [email protected]: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