making server buildable
This commit is contained in:
parent
bc15f05603
commit
ec3bde1191
6 changed files with 85 additions and 17 deletions
18
tfcserver.asd
Normal file
18
tfcserver.asd
Normal 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"
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue