Recipes
Ingredients
# Start with an empty folder
rm mySite --recurse --force
mkdir mySite
cd mySite
# Initialize this folder as a package
init name=mySite version=1.0.0 slug=mySlug
# Scaffold out a site and a handler
coldbox create app mySite
coldbox create handler myHandler index
# Add some required package
install coldbox
install cbmessagebox,cbstorages,cbvalidation
# Set the default port
package set defaultPort=8081
# Start up the embedded server
startGet Cooking
Spice It Up
Named arguments
Positional Parameters
Missing Args
Is there an echo in here?
Exiting a recipe
On The Fly Commands
Last updated
Was this helpful?