Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

69 lignes
1.6KB

  1. (asdf:defsystem "cl-deck-builder2.workers"
  2. :version "0.0.1"
  3. :author "Bubblegumdrop"
  4. :license "Do Not Redistribute"
  5. :depends-on (
  6. ;; "clack"
  7. ;; "lack"
  8. ;; "caveman2"
  9. ;; "envy"
  10. ;; "cl-ppcre"
  11. ;; "uiop"
  12. ;; for @route annotation
  13. ;; "cl-syntax-annot"
  14. ;; HTML Template
  15. ;; "djula"
  16. ;; for DB
  17. "mito"
  18. "mito-attachment"
  19. "datafly"
  20. "sxql"
  21. ;; for Models
  22. "assoc-utils" ; AGET is very handy
  23. "cl-csv" ; CSV import
  24. "cl-json" ; JSON import
  25. "cl-pass" ; Password hashing
  26. "local-time"
  27. "split-sequence"
  28. ;; Documentation!
  29. ;; "documentation-utils"
  30. ;; "documentation-utils-extensions"
  31. ;; "cl-org-mode"
  32. ;; More of Shinmeraa's code
  33. ;; "ratify"
  34. ;; QR Code Generator
  35. ;; "lispqr"
  36. ;; Download stuff
  37. ;; "trivial-download"
  38. ;; Error Handling
  39. ;; "lack-middleware-clack-errors"
  40. ;; Better logging
  41. ;; "verbose"
  42. ;; WebSocket chat server backend
  43. ;; "websocket-driver"
  44. ;; "lack-middleware-csrf"
  45. ;; "cl-markup"
  46. "hermetic"
  47. "inferior-shell"
  48. ;; Background job processing
  49. "psychiq")
  50. :components ((:module "src/workers"
  51. :components
  52. ((:file "main"))))
  53. :description "Deck Builder Project - Background Job Workers"
  54. :in-order-to ((test-op (test-op "cl-deck-builder2.workers-test"))))