* Changed parsing from yaml to file

* Removed startup parameter, due config fix
This commit is contained in:
Mario Franze 2021-01-09 09:13:14 +01:00
parent 28454502ef
commit 163acfc2cc
No known key found for this signature in database
GPG Key ID: 61296421381600B1

View File

@ -4,7 +4,7 @@
"version": "PTDL_v1",
"update_url": null
},
"exported_at": "2021-01-09T08:45:52+01:00",
"exported_at": "2021-01-09T09:08:57+01:00",
"name": "Code-Server",
"author": "admin@altvserver.de",
"description": "Run VS Code on any machine anywhere and access it in the browser.",
@ -14,7 +14,7 @@
],
"startup": "sh .local\/lib\/code-server-3.8.0\/bin\/code-server --bind-addr {{IP}}:{{SERVER_PORT}}",
"config": {
"files": "{\r\n \".config\/code-server\/config.yaml\": {\r\n \"parser\": \"yaml\",\r\n \"find\": {\r\n \"password\": \"{{server.build.env.PASSWORD}}\",\r\n \"bind\": \"{{server.build.env.IP}}:{{server.build.default.port}}\"\r\n }\r\n }\r\n}",
"files": "{\r\n \".config\/code-server\/config.yaml\": {\r\n \"parser\": \"file\",\r\n \"find\": {\r\n \"password\": \"password: {{server.build.env.PASSWORD}}\",\r\n \"bind-addr\": \"bind-addr: {{server.build.env.IP}}:{{server.build.default.port}}\",\r\n \"auth\": \"auth: password\",\r\n \"cert\": \"cert: false\"\r\n }\r\n }\r\n}",
"startup": "{\r\n \"done\": \"info HTTP server listening on\"\r\n}",
"logs": "{}",
"stop": "^C"