> > |
%META:TOPICINFO{author="honicky" date="1083547123" format="1.0" version="1.1"}%
%META:TOPICPARENT{name="ProjectDocs"}%
This is a page which describes for developers how to get things up and running.
First check out everything:
export CVS_RSH=ssh
cvs -z3 -d:ext:developername@cvs.sourceforge.net:/cvsroot/dlibrary co dlibrary
cvs -z3 -d:ext:developername@cvs.sourceforge.net:/cvsroot/dlibrary co RabbIT2
cvs -z3 -d:ext:developername@cvs.sourceforge.net:/cvsroot/dlibrary co documentation
next set up your shell:
cd dlibrary
. setClasspath.sh
for sh, bash, etc., or
source setClasspath.csh
for csh, tcsh, etc.
Now build everything:
make
Note, you must have make installed, and this probably only works on Unixish systems
cd ../RabbIT2
./jmake
Next make a directory for the repository:
mkdir /var/tmp/repository
ln -s /var/tmp/repository/rabbit.conf conf/rabbit.conf
Now you're ready to start up DiSC. Make sure that you are still in the RabbIT2 directory, and do the following:
java dlibrary.RemoteRepositoryImpl /var/tmp/repository localhost 2345&
java rabbit.proxy.Proxy
You will get some debugging output on the screen for each page you download.
-- RjHonicky - 03 May 2004 |