chore: include .vscode folder for easy running

This commit is contained in:
Ryan Dowling 2019-06-02 18:33:14 +10:00
parent ba8b8003b4
commit 1c924efed9
No known key found for this signature in database
GPG key ID: 5539FCDB88950EFD
2 changed files with 15 additions and 0 deletions

2
.gitignore vendored
View file

@ -3,6 +3,8 @@
/*/
# Except These
!/.vscode/launch.json
!/.github/
!/src/
!/macapp/
!/.editorconfig

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Launch",
"request": "launch",
"mainClass": "com.atlauncher.App",
"projectName": "atlauncher",
"args": "--debug --debug-level 3 --working-dir=test"
}
]
}