From 5b0e2eb19bb432e4e170d9bdb1cb8169d526801f Mon Sep 17 00:00:00 2001 From: Oscar Najera Date: Sun, 9 Feb 2025 21:28:34 +0100 Subject: [webstats] define system and package image --- webstats/webstats.asd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 webstats/webstats.asd (limited to 'webstats/webstats.asd') 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") -- cgit v1.2.3