diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-12-21T00·21+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-12-21T00·21+0100 |
commit | a8d46a358e9bef845fc6d89d3e7551910f0b3d47 (patch) | |
tree | 9588751935dbde948f477f2797be49f99cf11ca5 /gemma.asd | |
parent | 51ddb8fb53c6b1ecb9630d6a4cabd16ede07cb22 (diff) |
feat(lisp): Implement persistent storage via cl-prevalence
Uses the cl-prevalence system to store tasks on disk. The storage location is either relative to the working directory in which the system is started or determined (with priority) by the environment variable `GEMMA_DATA_DIR`.
Diffstat (limited to 'gemma.asd')
-rw-r--r-- | gemma.asd | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gemma.asd b/gemma.asd index eb2968313ddb..a2472a4f14d9 100644 --- a/gemma.asd +++ b/gemma.asd @@ -13,7 +13,10 @@ :version "0.1.0" :author "Vincent Ambo" :license "GPLv3" - :depends-on (alexandria local-time hunchentoot yason) + :depends-on (local-time + hunchentoot + cl-json + cl-prevalence) :components ((:module "src" :components ((:file "gemma")))) |