making server buildable

This commit is contained in:
Chris Cochrun 2023-06-13 07:34:00 -05:00
parent bc15f05603
commit ec3bde1191
6 changed files with 85 additions and 17 deletions

18
tfcserver.asd Normal file
View file

@ -0,0 +1,18 @@
#-asdf3.1 (error "requires asdf 3.1")
(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"
)