diff options
author | Oscar Najera <hi@oscarnajera.com> | 2025-02-09 21:28:34 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2025-02-09 21:28:34 +0100 |
commit | 5b0e2eb19bb432e4e170d9bdb1cb8169d526801f (patch) | |
tree | cd73b826fb8efcfc0ce08aa56937dddf83b63766 /webstats/webstats.asd | |
parent | 756fc597d9e4a77588341ce20cb9f28c8e9422af (diff) | |
download | scratch-5b0e2eb19bb432e4e170d9bdb1cb8169d526801f.tar.gz scratch-5b0e2eb19bb432e4e170d9bdb1cb8169d526801f.tar.bz2 scratch-5b0e2eb19bb432e4e170d9bdb1cb8169d526801f.zip |
[webstats] define system and package image
Diffstat (limited to 'webstats/webstats.asd')
-rw-r--r-- | webstats/webstats.asd | 17 |
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") |