component {

	this.name = "ModuleNameTest";
	this.applicationTimeout = createTimeSpan( 0, 1, 0, 0 );
	this.sessionManagement = false;
	this.setClientCookies = false;

	this.webroot = getDirectoryFromPath( getCurrentTemplatePath() );

	// ColdFusion will look in this directories for custom tags.
	// --
	// Note: Adobe ColdFusion will recursively search through the custom tag paths looking
	// for matching tag names. Lucee CFML will NOT search recursively. As such, this demo
	// doesn't work identically in both CFML runtimes.
	this.customTagPaths = arrayToList([
		"#this.webroot#tags"
	]);

}