the following statements will setup a new MySQL database/user (kfs) for development purposes
create user kfs@localhost identified by 'kfs'; create user kfs@'%' identified by 'kfs'; create database kfs default character set 'utf8' default collate 'utf8_bin'; grant all on kfs.* to kfs@localhost with grant option; grant all on kfs.* to kfs@'%' with grant option; |
For more information on how to setup MongoDB, or load data into the relational data store or document data store, see Technology Changes in Financials 6.0.2. |
We recommend building and running KFS locally. The KFS war can be build using maven and deployed to a container such as Tomcat.
Note, the -DskipTests=true is optional, but if you don't skip the tests, they will take some time to run and aren't strictly necessary for packaging the KFS war. |
For more information on how to configure KFS to connect to a Standalone Rice instance, see Technology Changes in Financials 6.0.2. |