Modified:
/wiki/SetupOlatCommandLine.wiki
=======================================
--- /wiki/SetupOlatCommandLine.wiki Fri Mar 12 04:52:20 2010
+++ /wiki/SetupOlatCommandLine.wiki Fri Mar 12 04:59:26 2010
@@ -1,4 +1,19 @@
#summary How to setup and programm for OLAT just with command line tools
-= Introduction =
-
+= Building an running OLAT from the command line =
+
+Check out olat and olatcore as described in etupOlatInEclipse and change
to the olat3 directory.
+
+||command||result||
+||`mvn compile`||compiles all classes and creates the target folders||
+||`mvn install`||creates the web project folder structre and copies all
the dependecies into olat3/target/olat||
+
+point your tomcat to the absolut path of olat3/olat/target/olat by adding
a host entry in server.xml file of tomcat like:
+
+{{{
+<Host name="localhost" debug="4" appBase="webapps">
+ <Context path="/olat"
+ docBase="/home/guido/olat3/olat/target/olat"
+ debug="4" reloadable="false" />
+</Host>
+}}}