Andrew, Theres a database dump of the 'acceptance test data' that can be useful to use:
its called acceptance_test_dump.sql and can be found in mifos-db module. Typically though I just build up mifos from scratch: 1. create blank mifos schema 2. apply base-schema.sql 3. aply base-data.sql 4. execute the init_mifos_password.sql so can login with mifos/testmifos 5. apply the following which can be found in integration-test-data.sql -- Entity: Salutation insert into lookup_value(lookup_id,entity_id,lookup_name) values (47, 15, 'Salutation-Mr'), (48, 15, 'Salutation-Mrs'), (228, 15, 'Salutation-Ms'); insert into lookup_value_locale(lookup_value_id,locale_id,lookup_id,lookup_value) values (93,1,47,'Mr'), (95,1,48,'Mrs'), (438,1,228,'Ms'); This is the minimal setup for mifos. Then you can just 'turn the clock back on your computer' and start creating loan products, center/group/client hierarchys, and loans etc Clearly it can take a bit of time to build up your own demo instance but its worth it. as you can take a dump of this and always go back to your demo instance when need be. Keith. On Tue, Nov 15, 2011 at 7:04 PM, George IBERIA <[email protected]> wrote: > we will send it tomorrow. But i think you can do it with demo database > too. > > ------------------------------------------------------------------------------ > RSA(R) Conference 2012 > Save $700 by Nov 18 > Register now > http://p.sf.net/sfu/rsa-sfdev2dev1 > Mifos-developer mailing list > [email protected] > Unsubscribe or change settings at: > https://lists.sourceforge.net/lists/listinfo/mifos-developer > -- You received this message because you are subscribed to the Google Groups "Mifos Developer" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mifosdeveloper?hl=en.
