Cleaning up Scheme code integration with different dev/prod modes.
This commit is contained in:
@@ -22,7 +22,11 @@
|
|||||||
srfi-18 medea numbers spiffy spiffy-cookies
|
srfi-18 medea numbers spiffy spiffy-cookies
|
||||||
intarweb pll sxml-transforms websockets miscmacros)
|
intarweb pll sxml-transforms websockets miscmacros)
|
||||||
|
|
||||||
(include "game")
|
(cond-expand
|
||||||
|
(geiser
|
||||||
|
(include "../../assets/game/acf/game"))
|
||||||
|
(else
|
||||||
|
(include "game")))
|
||||||
|
|
||||||
(root-path "./")
|
(root-path "./")
|
||||||
|
|
||||||
@@ -1661,10 +1665,15 @@
|
|||||||
((eq? b 'goto) #f)
|
((eq? b 'goto) #f)
|
||||||
(else #f))))))
|
(else #f))))))
|
||||||
|
|
||||||
(run-awful)
|
(cond-expand
|
||||||
|
(geiser
|
||||||
;; (thread-join! *awful-thread*)
|
'())
|
||||||
(repl)
|
(csi
|
||||||
|
(run-awful)
|
||||||
|
(repl))
|
||||||
|
(compiling ;; production
|
||||||
|
(run-awful)
|
||||||
|
(thread-join! *server-thread*)))
|
||||||
|
|
||||||
;; TODO
|
;; TODO
|
||||||
;; audit was called but didn't cause anything on year end
|
;; audit was called but didn't cause anything on year end
|
||||||
|
|||||||
Reference in New Issue
Block a user