Skip to content

Commit 64eb306

Browse files
committed
add missing serverConfigFiles and missing extension
1 parent 8e31c15 commit 64eb306

File tree

4 files changed

+69
-1
lines changed

4 files changed

+69
-1
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
TWILIO_TEST_ACCOUNT_SID: ${{ secrets.TWILIO_TEST_ACCOUNT_SID }}
9191
TWILIO_TEST_AUTHTOKEN: ${{ secrets.TWILIO_TEST_AUTHTOKEN }}
9292
run: |
93-
box server start serverConfigFile=server-${{ matrix.cfengine }} --noSaveSettings --debug
93+
box server start serverConfigFile=server-${{ matrix.cfengine }}.json --noSaveSettings --debug
9494
# Install Adobe 2021 cfpm modules
9595
if [[ "${{ matrix.cfengine }}" == "adobe@2021" ]] ; then
9696
box run-script install:2021

[email protected]

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name":"twilio-sdk-adobe@2021",
3+
"app":{
4+
"serverHomeDirectory":".engine/adobe2021",
5+
"cfengine":"adobe@2021"
6+
},
7+
"web":{
8+
"http":{
9+
"port":"60299"
10+
},
11+
"rewrites":{
12+
"enable":"true"
13+
},
14+
"webroot":"test-harness",
15+
"aliases":{
16+
"/moduleroot/twilio-sdk":"./"
17+
}
18+
},
19+
"jvm":{
20+
"heapSize":"1024"
21+
},
22+
"openBrowser":"false",
23+
"cfconfig":{
24+
"file":".cfconfig.json"
25+
},
26+
"scripts":{
27+
"onServerInstall":"cfpm install zip,debugger,mysql"
28+
}
29+
}

[email protected]

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name":"twilio-sdk-adobe@2023",
3+
"app":{
4+
"serverHomeDirectory":".engine/adobe2023",
5+
"cfengine":"adobe@2023"
6+
},
7+
"web":{
8+
"http":{
9+
"port":"60299"
10+
},
11+
"rewrites":{
12+
"enable":"true"
13+
},
14+
"webroot":"test-harness",
15+
"aliases":{
16+
"/moduleroot/twilio-sdk":"./"
17+
}
18+
},
19+
"jvm":{
20+
"heapSize":"1024"
21+
},
22+
"openBrowser":"false",
23+
"cfconfig":{
24+
"file":".cfconfig.json"
25+
},
26+
"scripts":{
27+
"onServerInstall":"cfpm install zip,debugger,mysql"
28+
}
29+
}

[email protected]

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"web":{
3+
"http":{
4+
"port":"60299"
5+
}
6+
},
7+
"app":{
8+
"cfengine":"lucee@6"
9+
}
10+
}

0 commit comments

Comments
 (0)