I currently have a super / sub database setup and would like to know the best way to deploy a fresh install via ml-gradle 2.7.0.
I have gotten it to work by removing the following file from my config directory for the first pass mlDeploy.
{
"database-name" : "my-documents",
"subdatabase" : [ {
"database-name" : "my-seconddb"
}, {
"database-name" : "my-thirddb"
} ]
}
After all of the databases are established for the first time, adding that back to the directory and re-running mlDeploy corrects the setup.
Additionally, I would like to keep the indexing settings for all three databases in one file if possible. Is there currently any way to do that?
Thank you for this time saving tool. So far it is much easier to use than Roxy.
Simplest configuration:
src/main/ml-config/databases/1-my-firstsub.json
{
"database-name" : "my-firstsub"
}
src/main/ml-config/databases/2-my-nextsub.json
{
"database-name" : "my-nextsub"
}
src/main/ml-config/databases/6-my-documents.json
{
"database-name" : "my-documents",
"subdatabase" : [ {
"database-name" : "my-firstsub"
}, {
"database-name" : "my-nextsub"
} ]
}