-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codio
27 lines (27 loc) · 1017 Bytes
/
.codio
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
{
"commands": {
"Compile & Run": "javac {{filename}} && java {{filename_no_ext}}",
"Compile": "javac {{filename}}",
"Run": "java {{filename_no_ext}}"
},
"preview": {
"Virtual Desktop": "https://{{domain3000}}/",
"Project Index (static)": "https://{{domain}}/{{index}}",
"Current File (static)": "https://{{domain}}/{{filepath}}",
"Box URL": "http://{{domain3000}}/",
"Box URL SSL": "https://{{domain3000}}/"
},
"debugger": [
{
"type": "JAVA",
"command": "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5105",
"before": "javac -g -d . {{filepath}} && java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5105 {{filepath}} ",
"single": true,
"path": "{{filepath}}",
"args": "",
"rootFolder": "",
"uuid": "17619cd9-b8af-656f-9f29-54ca4d9f5d4a",
"name": "Debug Current File"
}
]
}