> I can't quite figure out how to deploy my lift app and was hoping one > of you could point me in the right direction. For fun i uploaded my > entire project (uncompiled) to the server and ran mvn jetty:run - this > worked fine but as soon as i killed my ssh connection the jetty server > stopped.
I think it should be enough to run mvn jetty:run in the background. My start-server.sh script: #!/bin/bash mvn jetty:run >log.out 2>&1 & (puts all logs in log.out for further inspection) -- Adam Warski http://www.warski.org http://www.softwaremill.eu -- You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
