Created
June 15, 2021 14:37
-
-
Save cfmitrah/590801c4b0f3e5ab08d6bb81cdb707a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfcomponent output="false"> | |
<!--- Application settings ---> | |
<cfset this.name = createUUID() /> | |
<cfset this.sessionManagement = true> | |
<cfset this.sessionTimeout = createTimeSpan(0,0,30,0)> | |
<cfsetting showdebugoutput="yes"> | |
<cfset this.mappings["/ModelGlue"] = getDirectoryFromPath(getCurrentTemplatePath()) & "ModelGlue/"> | |
<cfset this.mappings["/ColdSpring"] = getDirectoryFromPath(getCurrentTemplatePath()) & "ColdSpring/"> | |
<cfset this.mappings["/ApplicationName"] = getDirectoryFromPath(getCurrentTemplatePath())> | |
</cfcomponent> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment