M .builds/deploy.yml => .builds/deploy.yml +4 -2
@@ 17,8 17,10 @@ tasks:
$HOME/roswell/ros install sbcl-bin
$HOME/roswell/ros use sbcl-bin
- build: |
- cd ur-game
- $HOME/roswell/ros build roswell/ur-game.ros
+ mkdir -p $HOME/.roswell/local-projects/build
+ ln -s ur-game $HOME/.roswell/local-projects/build/
+
+ $HOME/roswell/ros build ur-game/roswell/ur-game.ros
- deploy: |
sshopts="ssh -o StrictHostKeyChecking=no -p 2220"
rsyncopts="--recursive --partial --progress --delete"
M roswell/ur-game.ros => roswell/ur-game.ros +1 -2
@@ 11,8 11,7 @@ exec ros -Q -- $0 "$@"
(:use :cl))
(in-package :ros.script.ur-game.3834464264)
-(load "ur-game.asd")
-(ql:quickload :ur-game)
+(require :ur-game)
(defun main (&rest argv)
(declare (ignorable argv))
M ur-game.asd => ur-game.asd +4 -2
@@ 1,17 1,19 @@
;;;; ur-game.asd
(asdf:defsystem #:ur-game
- :description "The Royal Game of Ur"
- :author "Samuel Hunter"
+ :description "The Royal Game of Ur Web Application"
+ :author "Samuel Hunter <shunter.xyz>"
:license "BSD 3-Clause"
:version "0.0.1"
:depends-on (#:alexandria
#:cl-json
#:cl-ppcre
+
#:clack
#:clack-handler-hunchentoot
#:lack
#:lack-middleware-static
+
#:session-token
#:uiop
#:vom