Files
iOS/Sources/PushServer/.vscode/launch.json
Zac West c0a73840d6 APNS server in Vapor (#2024)
## Summary
Implements the push send and rate limit information in Swift using Vapor.

## Any other notes
This will allow us to get off Firebase, which gives a few immediate benefits:
- We can send PushKit notifications for complications, widgets, and location updates.
- We remove the last SDK that uses network connectivity to third parties.
2021-12-26 00:23:33 -08:00

34 lines
1.1 KiB
JSON

{
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug Run",
"program": "${workspaceFolder}/.build/debug/Run",
"args": [],
"cwd": "${workspaceFolder:PushServer}",
"preLaunchTask": "swift: Build Debug Run"
},
{
"type": "lldb",
"request": "launch",
"name": "Release Run",
"program": "${workspaceFolder}/.build/release/Run",
"args": [],
"cwd": "${workspaceFolder:PushServer}",
"preLaunchTask": "swift: Build Release Run"
},
{
"type": "lldb",
"request": "launch",
"name": "Test PushServer",
// not sure how to get around this absolute path requirement
"program": "/Applications/Xcode-13.2.1.app/Contents/Developer/usr/bin/xctest",
"args": [
".build/debug/PushServerPackageTests.xctest"
],
"cwd": "${workspaceFolder:PushServer}",
"preLaunchTask": "swift: Build All"
}
]
}