first commit

This commit is contained in:
2026-06-03 15:55:08 +03:00
commit 9f547d8d9e
3 changed files with 33 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
doc/
token*.*
+16
View File
@@ -0,0 +1,16 @@
<cfcomponent displayname="Application" output="true">
<cfset this.Name = "llmui" />
<cfset this.applicationTimeout = createTimeSpan(0, 0, 3, 0) />
<cfset this.sessionmanagement = "Yes" />
<cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
<cfreturn true />
</cffunction>
<cffunction name="OnRequestStart" access="public" returntype="boolean" output="false">
<cfargument name="targetPage" type="string" required="true" />
<cfreturn true />
</cffunction>
</cfcomponent>
+15
View File
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>LLM-UI :: Test</title>
</head>
<body>
<cfoutput>
<h1>LLM-UI OK</h1>
<p>Lucee: #server.lucee.version#</p>
<p>Java: #server.java.version#</p>
<p>OS: #server.os.name#</p>
<p>Now: #now()#</p>
</cfoutput>
</body>
</html>