-
Notifications
You must be signed in to change notification settings - Fork 0
/
webbartleby.asd
38 lines (37 loc) · 1.46 KB
/
webbartleby.asd
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
;;;; web-bartleby.asd
;;;;
;;;; Copyright Izaak Walton (c) 2022
(asdf:defsystem #:webbartleby
:version "0.0.1"
:author "Izaak Walton <[email protected]"
:license "GNU General Purpose License"
:description "Webapp for Bartleby Scheduling System"
:depends-on ("bartleby" "cl-who" "spinneret" "cl-bootstrap" "hunchentoot")
:serial t
:build-operation program-op
:build-pathname "launch-webbartleby"
:entry-point "webbartleby::main"
:components ((:module "webbartleby"
:serial t
:components ((:file "package")
(:file "server")
(:file "page-template")
(:module "www"
:serial t
:components ((:file "home-page")
(:file "new-client")
(:file "new-appointment")
(:file "new-employee")
(:file "new-room")
(:file "view-client")
(:file "view-employee")
(:file "view-room")
(:file "browse-clients")
(:file "browse-employees")
(:file "browse-rooms")
(:file "browse-appointments")
(:file "daily-calendar")
(:file "weekly-calendar")
(:file "monthly-calendar")
(:file "check-out")
(:file "search")))))))