FORGEBOX Enterprise 🚀 - Take your ColdFusion (CFML) Development to Modern Times! Learn More...

Deploy

v3.0 Interceptors
This interceptor reads and stores a _deploy.tag file to check for new deployments. If the tag has been updated, the interceptor tells the framework to reinitialize itself. This is done via date comparison. Once the framework starts up, it reads the date timestamp on the tag and saves it on memory. You can use the included ANT script to touch the file with a new timestamp. Then just make sure you include the file in your deploy
============================================================
Instructions:
============================================================
- Place the _deploy.tag and deploy.xml ANT task in your /config directory of your application.
- Add the Deploy interceptor declaration

interceptors = [
{class="#pathTo#.Deploy",
properties={
tagFile = "config/_deploy.tag",
deployCommandObject = "path.to.cfcCommand", 
deployCommandModel = "model via wirebox"
}
}
];
============================================================
Interceptor Properties:
============================================================
- tagFile : config/_deploy.tag [required] The location of the tag.
- deployCommandObject : The class path of the deploy command object to use [optional]. 
- deployCommandModel : The name of the model object to retrieve via WireBox [optional].

This command object is a CFC that must implement an init(controller) method and an execute() method.  
This command object will be executed before the framework reinit bit is set so you can do
any kind of cleanup code or anything you like:

============================================================
Command Object Interface
============================================================
component{
init(controller){}

execute(){}
}

============================================================
Command Model Object Interface
============================================================
component{
execute(){}
}

== Version 3.0 =

# Upgraded for CF9.01 and above
# Upgraded to use applicationstop() instead.

== Version 2.0 ==

# Moved to ForgeBox

== Version 1.0 ==

# Initial Release

$ box install Deploy

No collaborators yet.
 
5.00 / 1
  • {{ getFullDate("2011-11-02T06:39:54Z") }}
  • {{ getFullDate("2016-06-09T21:06:45Z") }}
  • 5,942
  • 3,061