From 6183665bd21fc8187ff602151b469d3fb6a9c7e4 Mon Sep 17 00:00:00 2001 From: Maarten Engels Date: Fri, 17 Feb 2023 15:01:04 +0100 Subject: [PATCH] update gitignore --- .gitignore | 1 + .vscode/launch.json | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 2b6bb4b..991de6a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ xcuserdata/ DerivedData/ .swiftpm +users.json \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..965c7e6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + "configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug NIOSwiftMUD", + "program": "${workspaceFolder:NIOSwiftMUD}/.build/debug/NIOSwiftMUD", + "args": [], + "cwd": "${workspaceFolder:NIOSwiftMUD}", + "preLaunchTask": "swift: Build Debug NIOSwiftMUD" + }, + { + "type": "lldb", + "request": "launch", + "name": "Release NIOSwiftMUD", + "program": "${workspaceFolder:NIOSwiftMUD}/.build/release/NIOSwiftMUD", + "args": [], + "cwd": "${workspaceFolder:NIOSwiftMUD}", + "preLaunchTask": "swift: Build Release NIOSwiftMUD" + } + ] +} \ No newline at end of file