# Define default parameter(s) that will be used later, in case user didn't
# Define default parameter(s) that will be used later, in case user didn't
# specify it
# specify it.
# All parameters are available through the configuration.XX syntax.
# All possible parameters should have a default.
# All possible parameters should have a default.
configuration.name = anonymous
# In our use case, we are expecting from the user to specify one (optional) parameter: "name". We put the default value here if he doesn't specify it, so that it doesn't crash.
configuration.name = John Doe
# If our use case requires that the user can specify a mail address so that his instance can mail to him (for example), we can do:
# configuration.mail-address =
# If the user doesn't specify it, it won't break and the recipe can handle it (i.e don't send any mail for example).
# Create all needed directories, depending on your needs
# Create all needed directories, depending on your needs