-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathserver.json
More file actions
30 lines (30 loc) · 852 Bytes
/
server.json
File metadata and controls
30 lines (30 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name":"coldbox-modern-template",
"JVM":{
"heapSize":"512",
"javaVersion":"openjdk21_jre",
"args":"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8888"
},
"app":{
"cfengine":"boxlang@be"
},
"web":{
"webroot":"public",
"rewrites":{
"enable":true
},
"aliases":{
"/coldbox/system/exceptions":"./lib/coldbox/system/exceptions/",
"/tests":"./tests/"
}
},
"cfconfig":{
"file":"./.cfconfig.json"
},
"scripts":{
"onServerInstall":[
"assertEqual \\${serverinfo.engineName} boxlang && install bx-esapi,bx-compat-cfml; exit 0",
"assertEqual \\${serverinfo.engineName} lucee && cfconfig cfmapping save /tests {web-root-directory}/../tests; exit 0"
]
}
}