-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathningle-tutorial-project.asd
More file actions
42 lines (41 loc) · 1.25 KB
/
ningle-tutorial-project.asd
File metadata and controls
42 lines (41 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(defsystem "ningle-tutorial-project"
:version "0.0.1"
:author "nmunro"
:license "BSD3-Clause"
:description ""
:depends-on (:cl-dotenv
:clack
:djula
:cl-forms
:cl-forms.djula
:cl-forms.ningle
:envy
:envy-ningle
:ingle
:com.inuoe.jzon
:mito
:mito-auth
:ningle
:ningle-auth
:mito-pager)
:components ((:module "src"
:components
((:file "contrib")
(:file "middleware")
(:file "config")
(:file "models")
(:file "forms")
(:file "migrations")
(:file "controllers")
(:file "main"))))
:in-order-to ((test-op (test-op "ningle-tutorial-project/tests"))))
(defsystem "ningle-tutorial-project/tests"
:author "nmunro"
:license "BSD3-Clause"
:depends-on ("ningle-tutorial-project"
:rove)
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for ningle-tutorial-project"
:perform (test-op (op c) (symbol-call :rove :run c)))