Lucee Sandbox

This is a simple sandbox for testing various features of Lucee, running sample code, or working offline.

The HTML for this page is in /views/main/default.cfm.

New views can be created by adding new CFM files in the appropriate directory. You can add a controller for some backend logic, but the easiest way to get started is just to create a view.

For example, you can create a new view at /views/main/newView.cfm and then access it at /main/newView.

You can also create an entirely different folder structure. Create a new folder in views called muppets for instance, and then create a default.cfm in that folder. The default.cfm is called by default, so by simply directing to /muppets you'd render the default file.

By default, main is the default controller, and default is the default action. We name the .cfm file the name of the action, by convention.

Skins

For more information on skins, and to review the various options, check out the skins documentation.