git.mcksp
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
(asdf:defsystem #:gitbrn
  :description "gitbrn - your friendly git forge"
  :author "mcksp@mcksp.com"
  :version "0.0.1"
  :serial t
  :depends-on (#:spinneret
               #:str
               #:easy-routes
               #:uuid
               #:cl-git
               #:sqlite
               #:cl-bcrypt
               #:hunchentoot)
  :components ((:module "src"
                :components
                 ((:file "package")
                  (:file "gitbrn")
                  (:file "handlers"))))
  :build-operation "program-op"
  :build-pathname "gitbrn"
  :entry-point "gitbrn::main")