Skip to content

Commit

Permalink
update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
maartene committed Feb 17, 2023
1 parent 443cc4d commit 6183665
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
xcuserdata/
DerivedData/
.swiftpm
users.json
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit 6183665

Please sign in to comment.