Bootstrapping Your Application

This functionality will be being implemented in version 0.6.0. See the project milestones for more


Generate IO State

After you have built your domains, you can then 'autogenerate' your IO State files using the following command from the root of your project:

gradle scaffold -Pargs="connector=demo.application.domain.Test"

This will then create all the necessary state files for your endpoints used by the framework.


Generate Controller

Once you have your projects domains & IOI State built, you can then 'autogenerate' your controllers using the following command from the root of the project:

gradle scaffold -Pargs="controller=demo.application.domain.Test, demo.application.service.TestService, java"

This will then create all the necessary 'controllers' for your domain/service.