Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To run Wookie in standalone mode:

ant clean-db run

The first time you run wookie (or compile it) any required libraries will be downloaded, this can take some time and requires a network connection.

The "clean-db" target Note that by default, wookie will clean the database each time it is run, this ensures that your development environment starts in a consistent state. However, any modifications you have made to the database during previous runs will be lost.

...

If you want to start with a completely clean build then use:

ant clean-build clean-db run

Running options

To set run mode options you can either add properties to the local.build.properties file or you can pass properties in via the command line using -Drun.args="<property_name>=<property_value> <property_name>=<property_value>". For example:

...