aboutsummaryrefslogtreecommitdiffstats
path: root/webstats/webstats.asd
blob: 688c4f57f6dbff9e1cbf28e880d6436a43412392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defsystem "webstats"
  :version "0.1.0"
  :author "Oscar"
  :license "AGPL-3"
  :depends-on ("hunchentoot"
               "cl-json"
               "spinneret"
               "cl-yesql"
               "cl-yesql/sqlite"
               "parenscript")
  :components ((:file "server")
               (:static-file "queries.sql")
               (:static-file "stats.paren"))
  :description ""
  :build-operation "program-op" ;; leave as is
  :build-pathname "webstats.bin"
  :entry-point "webstats::main")