Deployment through cache terminal
would like to know how to execute deployments through cache terminal..Are are there any function or scripts available for deploying ? Is there any direct cache command similar to GUI-deploy that will deploy ?
Please let knoe
Comments
What are you going to deploy?
To deploy some application you can use Installer Manifest.
Look at this article.
You can use $system.OBJ.Load() or LoadDIr() to load source from disk.
Do you wait for any more variants?
Do not forget to mark the answer as accepted.
If you have only classes and globals you can use
do $System.OBJ.Export("Package*.CLS,*.DFI","release.xml")to export the classes and DFIs to file,
Do $System.OBJ.Export("Class*D.GBL","globals.xml")to export globals to file in the /mgr folder of your namespace.
And use Class Import page of the Control Panel (http://yourhost:57772/csp/sys/exp/%25CSP.UI.Portal.ClassList.zen) to import classes or globals:

Or call in terminal:
$system.OBJ.Load(path to a file.xml)
As Benjamin mentioned before.