Changeset 3355

Show
Ignore:
Timestamp:
06/26/08 09:44:03 (7 months ago)
Author:
ksprotte
Message:

added &key start-frontend to bos web init, nil by default

to start the frontend specify :start-frontend t in web.rc

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/projects/bos/web/startup.lisp

    r3353 r3355  
    2525             worldpay-test-mode 
    2626             (google-analytics-account "UA-3432041-1") 
     27             start-frontend 
    2728             debug) 
    2829  (when website-url-given 
     
    4748  (setf hunchentoot:*hunchentoot-default-external-format* (flex:make-external-format :utf-8 :eol-style :lf)) 
    4849  (setq *webserver* (hunchentoot:start-server :port *port* #+not-yet :threaded #+not-yet (not debug))) 
    49   (start-frontend :host host :backend-port port :port frontend-port)) 
     50  (if start-frontend 
     51      (start-frontend :host host :backend-port port :port frontend-port) 
     52      (warn "frontend not started - to achieve this specify :start-frontend t")))