From 8e110caf02bb919a9466082220e4ac8f4b08f950 Mon Sep 17 00:00:00 2001 From: 63621600aee4323e887a08d4 <63621600aee4323e887a08d4@devide> Date: Wed, 2 Nov 2022 19:25:00 +0000 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E7=BA=BF=E6=8F=90=E4=BA=A4Git?= =?UTF-8?q?=E7=89=88=E6=9C=AC=EF=BC=9A=E6=96=B0=E5=A2=9E=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E8=BF=90=E8=A1=8C=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 21 +++++++++++++++++++++ preview.yml | 8 ++++++++ 2 files changed, 29 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 preview.yml diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2965bea --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "java", + "name": "Launch Current File", + "request": "launch", + "mainClass": "${file}" + }, + { + "type": "java", + "name": "Launch FunctionalZork", + "request": "launch", + "mainClass": "fpzork.FunctionalZork", + "projectName": "functional zork" + } + ] +} \ No newline at end of file diff --git a/preview.yml b/preview.yml new file mode 100644 index 0000000..e7ee2f7 --- /dev/null +++ b/preview.yml @@ -0,0 +1,8 @@ +autoOpen: true +apps: + - port: 8523 + command: /usr/bin/env /usr/lib/jvm/java-17-openjdk-amd64/bin/java -XX:+ShowCodeDetailsInExceptionMessages -cp /ide/workspace/1024opensource/bin fpzork.FunctionalZork + root: ./ + name: FunctionalZork + description: FunctionalZork + autoOpen: true -- GitLab