This repository is simply intended to serve as an illustration of a bare-bones event gateway within Lucee. Functionally this is pretty pointless but hopefully will help other gateways getting started.
- Rename gateway.cfc to be whatever you like. Move it if you like. Just make sure it's accessible from your web root.
- Update driver.cfc to have the correct path by editing the value returned by getCFCPath().
- Copy driver.cfc to {lucee-web}/context/admin/gdriver/yourDriverName.cfc
- Open up your Lucee web context
- Go to Settings -> Logging
- Add in a log file named "event-gateway-skeleton" (or whatever you renamed that too in the _log() function)
- Go to Services -> Event Gateways
- Set up your event gateway
- Start it up
If you have used the default skeleton without changing it you will have to specify a string for "external url" (which isn't actually used). You will also see some entries in the event-gateway-skeleton log file.
All you have to do now is actually make it useful!