Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Checking out the Rice codebase

- Checkout the latest Rice codebase from Rice-Codebase (https://test.kuali.org/svn/rice/trunk).

Check out clover-integration (rice data)

- Checkout the clover integration folder from Clover-Integration (https://test.kuali.org/svn/kul-cfg-dbs/branches/clover-integration)

Setup sample-app-config.xml

- Create a file called sample-app-config.xml under user.home/kuali/main/dev/

Setup sample-app-config.xml

- Create a file called sample-app-config.xml under user.home/kuali/main/dev/

sample-app.config.xml
<config>

	<param name="http.port">8080</param>

	<param name="application.host">localhost</param>

	<param name="datasource.url">jdbc:oracle:thin:@localhost:1521:XE</param>
        <param name="datasource.username">kulrice</param>
        <param name="datasource.password">kulrice</param>
        <param name="datasource.ojb.platform">Oracle9i</param>
	<param name="datasource.platform">org.kuali.rice.core.framework.persistence.platform.MySQLDatabasePlatform</param>
	<param name="datasource.driver.name">com.mysql.jdbc.Driver</param>
	<param name="datasource.pool.validationQuery">select 1</param>

	<param name="datasource.pool.maxWait">30000</param>
	<param name="datasource.pool.minSize">10</param>
	<param name="datasource.pool.maxSize">50</param>

	<param name="attachments.directory">/tmp/attachments</param>
	<param name="attachment.dir.location">${attachments.directory}</param>

	<param name="keystore.alias">rice</param>
	<param name="keystore.file">security/rice.keystore</param>
	<param name="keystore.password">..</param>
	<param name="encryption.key">...</param>

	<param name="dev.mode">false</param>

</config>
  • No labels