Add launch scripts for feather app and test suite.
2 files changed, 23 insertions(+), 0 deletions(-)

A => feather-test.lisp
A => feather.lisp
A => feather-test.lisp +12 -0
@@ 0,0 1,12 @@ 
+(in-package :cl-user)
+
+;; Configure ASDF to find the project systems
+(load "src/prep-quicklisp.lisp")
+
+;; Load the server
+(ql:quickload :qlot)
+(qlot:quickload :feather/test)
+
+;; Go
+(5am:run-all-tests)
+(quit)

          
A => feather.lisp +11 -0
@@ 0,0 1,11 @@ 
+(in-package :cl-user)
+
+;; Configure ASDF to find the project systems
+(load "src/prep-quicklisp.lisp")
+
+;; Load the server
+(ql:quickload :qlot)
+(qlot:quickload :feather)
+
+;; Go
+(feather:main nil)