Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
515B

  1. #|
  2. preamble.lisp
  3. For whatever reason, I don't keep this project in my
  4. ~/quicklisp/local-projects directory. So I have this preamble bit
  5. of code that will push your current directory to Quicklisp.
  6. |#
  7. ;; Assume the project is in the current working directory. It's
  8. ;; harmless, probably.
  9. (eval-when (:compile-toplevel :load-toplevel :execute)
  10. (pushnew (uiop:getcwd) ql:*local-project-directories*)
  11. ;; Load em' up. We use SLY so load SLYNK instead of SWANK here.
  12. (ql:quickload '(:cl-deck-builder2 :slynk)))