HowTo run examples
From Lift
Contents |
how to run
in the following instructions, you should replace example-xxx by the right value (see section examples below), depends of the examples you want to run.
from war
- Install Java 5+ on your machine (http://java.sun.com)
- Install a servlet server (like jetty or tomcat)
- Download and deploy example-project.war
Point your browser to http://localhost:8080/example-project/ (the url could change, depends of your servlet server's configuration) and you should see lift running
from project
- Install Java 5+ on your machine (http://java.sun.com)
- Install Maven 2.0.x on your machine (http://maven.apache.org/)
- Download example-project.tar.bz2
tar -xjvf example-project.tar.bz2 cd example mvn jetty:run
Point your browser to http://localhost:8080/ and you should see the example running
from svn source
- Install Java 5+ on your machine (http://java.sun.com)
- Install Maven 2.0.x on your machine (http://maven.apache.org/)
- Install subversion on your machine
svn checkout example-svn-url example cd example mvn jetty:run
Point your browser to http://localhost:8080 and you should see lift running
examples
lift-example
The default example applications, you should start with it to have an overview of the lift's power.
- war : http://scala-tools.org/repo-releases/net/liftweb/lift-example/0.8/lift-example-0.8.war
- project : http://scala-tools.org/repo-releases/net/liftweb/lift-example/0.8/lift-example-0.8-project.tar.bz2
- svn : http://liftweb.googlecode.com/svn/tags/lift-0.8/sites/example/
lift-hellolift
- war : http://scala-tools.org/repo-releases/net/liftweb/lift-hellolift/0.8/lift-hellolift-0.8.war
- project : http://scala-tools.org/repo-releases/net/liftweb/lift-hellolift/0.8/lift-hellolift-0.8-project.tar.bz2
- svn : http://liftweb.googlecode.com/svn/tags/lift-0.8/sites/hellolift/
skittr-example
- war : http://scala-tools.org/repo-releases/net/liftweb/skittr-example/0.8/skittr-example-0.8.war
- project : http://scala-tools.org/repo-releases/net/liftweb/skittr-example/0.8/skittr-example-0.8-project.tar.bz2
- svn : http://liftweb.googlecode.com/svn/tags/lift-0.8/sites/skittr/
unconference
- war : N/A
- project : N/A
- svn : http://unconference.googlecode.com/svn/trunk/

