aboutsummaryrefslogtreecommitdiffstats
path: root/webstats/webstats.asd
diff options
context:
space:
mode:
Diffstat (limited to 'webstats/webstats.asd')
-rw-r--r--webstats/webstats.asd17
1 files changed, 17 insertions, 0 deletions
diff --git a/webstats/webstats.asd b/webstats/webstats.asd
new file mode 100644
index 0000000..688c4f5
--- /dev/null
+++ b/webstats/webstats.asd
@@ -0,0 +1,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")