-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to match latest vapor template + expose test env variables for…
… convenience
- Loading branch information
1 parent
13e73c1
commit a9876bb
Showing
5 changed files
with
381 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"sourceLanguages": [ | ||
"swift" | ||
], | ||
"args": [], | ||
"cwd": "${workspaceFolder:vapor-saas-backend-template}", | ||
"name": "Debug App", | ||
"program": "${workspaceFolder:vapor-saas-backend-template}/.build/debug/App", | ||
"preLaunchTask": "swift: Build Debug App" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"sourceLanguages": [ | ||
"swift" | ||
], | ||
"args": [], | ||
"cwd": "${workspaceFolder:vapor-saas-backend-template}", | ||
"name": "Release App", | ||
"program": "${workspaceFolder:vapor-saas-backend-template}/.build/release/App", | ||
"preLaunchTask": "swift: Build Release App" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.