tfcconnection-zola/tfcserver.asd
2023-06-14 07:13:25 -05:00

19 lines
778 B
Common Lisp

#-asdf3.1 (error "requires asdf 3.1")
#+linux (deploy:define-library deploy::compression-lib :dont-deploy T)
(defsystem "tfcserver"
:version "0.1.0"
:author "Chris Cochrun"
:license "AGPLV3"
:depends-on ("hunchentoot" "dexador" "serapeum" "clack" "com.inuoe.jzon" "bordeaux-threads") ;; <== list of Quicklisp dependencies
:components ((:module "src"
:components
((:file "main"))))
:description "Restful server to handle website pieces"
:long-description "Restful server to handle website pieces"
;; :in-order-to ((test-op (test-op "tfcserver-test")))
:defsystem-depends-on (:deploy) ;; (ql:quickload "deploy") before
:build-operation "deploy-op" ;; leave as is
:build-pathname "tfcapi"
:entry-point "tfc-server::main")