-
Notifications
You must be signed in to change notification settings - Fork 0
Deployer
Roxy Deployer is a command line tool for scaffolding and deploying XQuery applications to MarkLogic Server. Help is available by running the ml command with no parameters:
> ml
##Bootstrap Roxy Deployer can automatically create all your forests, databases, app servers, users, and roles for you. You provide the settings via build.properties and (local|dev|prod).properties and the ml-config.xml file. Roxy deployer uses these values to create the necessary configuration on one or more servers.
Example of bootstrapping to your local box
> ml local bootstrap
##Deploying source code You can deploy your XQuery modules to a MarkLogic modules database. By default, all files under $roxy/src are deployed except for test files. Test files are only deployed if you have a test environment configured and only for non-production environments.
Example of deploying source code to your development box
> ml dev deploy modules
##Deploying content You can deploy content to your content database. By default, all files under $roxy/data are deployed.
Example of deploying content to your local database
> ml local deploy content