Add Licensing and Contributing
[candle] / src / main / package.lisp
1 ; Copyright 2022 Frank Duncan (frank@consxy.com) under AGPL3.  See distributed LICENSE.txt.
2 (defpackage #:candle (:use :cl)
3  (:export
4   #:server #:add-project #:delete-project #:refresh-project #:list-projects
5   #:project-branch-information #:run #:list-tasks #:*candle-dir* #:*job-system* #:*candle-dir* #:failures
6   #:project-job-information #:get-job-log #:retry-job #:job-project #:project-dir #:process-job-in-system
7   #:shutdown-system #:*environment* #:project-name
8
9   #:candle-error #:candle-error-reason)
10  (:documentation "Main candle package.
11
12 Candle is continuous integration server and command line utility for common
13 lisp projects.  The package is mainly accessed through the command line
14 scripts in the bin directory."))
15
16 (defpackage #:candle-cli (:use :cl) (:export :run))
17 (defpackage #:candle-server-cli (:use :cl) (:export :run))
18 (defpackage #:candle-aws (:use :cl))
19 (defpackage #:candle-local (:use :cl))